- 6 sections: Hero, About, Experience, Skills, Projects, Contact - MagicUI: Globe, Particles, Meteors, AnimatedList, IconCloud, BentoGrid - Dark mode support, scroll-triggered animations - Static export ready for deployment
22 lines
376 B
TypeScript
22 lines
376 B
TypeScript
"use client"
|
|
|
|
import { BlurFade } from "@/components/ui/blur-fade"
|
|
|
|
export function SectionWrapper({
|
|
children,
|
|
className,
|
|
id,
|
|
}: {
|
|
children: React.ReactNode
|
|
className?: string
|
|
id?: string
|
|
}) {
|
|
return (
|
|
<section id={id} className={className}>
|
|
<BlurFade delay={0.15} inView inViewMargin="-50px">
|
|
{children}
|
|
</BlurFade>
|
|
</section>
|
|
)
|
|
}
|