edtechdemo / src /app /page.tsx
Nguyen Thanh Hoang
feature/homepage (#1)
4901b1e unverified
raw
history blame contribute delete
533 Bytes
import { AnnouncementBanner } from '@/components/homepage/AnnouncementBanner';
import { CustomizationSection } from '@/components/homepage/CustomizationSection';
import { FeaturesSection } from '@/components/homepage/FeatureSection';
export default function Home() {
return (
<main className="flex min-h-screen flex-col">
<div className="flex-1 space-y-16 pb-8 pt-20 md:pb-12 md:pt-24 lg:py-32">
<AnnouncementBanner />
<FeaturesSection />
<CustomizationSection />
</div>
</main>
);
}