forked from RiseUP/riseup-squad20
16 lines
365 B
TypeScript
16 lines
365 B
TypeScript
import { Header } from "@/components/header"
|
|
import { HeroSection } from "@/components/hero-section"
|
|
import { Footer } from "@/components/footer"
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<div className="min-h-screen flex flex-col">
|
|
<Header />
|
|
<main className="flex-1">
|
|
<HeroSection />
|
|
</main>
|
|
<Footer />
|
|
</div>
|
|
)
|
|
}
|