feat: add animated hero section with TypeAnimation component on About page

This commit is contained in:
2025-10-16 16:06:35 +02:00
parent 4ef0b3918b
commit 40e616fa83
6 changed files with 83 additions and 3 deletions

View File

@@ -0,0 +1,9 @@
import { cn } from '@/lib/utils'
import React from 'react'
const h1 = React.forwardRef<HTMLHeadingElement, React.HTMLAttributes<HTMLHeadingElement>>(({ className, ...props }, ref) => (
<h1 ref={ref} className={cn('text-4xl font-medium tracking-tight lg:text-5xl', className)} {...props} />
))
h1.displayName = 'H1'
export { h1 }