33 lines
670 B
TypeScript
33 lines
670 B
TypeScript
"use client";
|
|
|
|
import {
|
|
Header,
|
|
Hero,
|
|
Footer,
|
|
AudienceSection,
|
|
BenefitsSection,
|
|
CurriculumSection,
|
|
AnimateOnScroll,
|
|
} from "./components";
|
|
|
|
export default function CloudphonePage() {
|
|
return (
|
|
<div className="min-h-screen bg-[var(--background)] text-[var(--foreground)]">
|
|
<Header />
|
|
<main>
|
|
<Hero />
|
|
<AnimateOnScroll delay={0}>
|
|
<AudienceSection />
|
|
</AnimateOnScroll>
|
|
<AnimateOnScroll delay={100}>
|
|
<BenefitsSection />
|
|
</AnimateOnScroll>
|
|
<AnimateOnScroll delay={0}>
|
|
<CurriculumSection />
|
|
</AnimateOnScroll>
|
|
</main>
|
|
<Footer />
|
|
</div>
|
|
);
|
|
}
|