- Reorganizes the components folder into ui, layout, features, shared, and providers for better modularity. - Groups routes in the app folder using a route group (auth). - Updates all imports to reflect the new file structure.
16 lines
396 B
TypeScript
16 lines
396 B
TypeScript
import { Header } from "@/components/layout/header"
|
|
import { HeroSection } from "@/components/features/general/hero-section"
|
|
import { Footer } from "@/components/layout/footer"
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<div className="min-h-screen flex flex-col">
|
|
<Header />
|
|
<main className="flex-1">
|
|
<HeroSection />
|
|
</main>
|
|
<Footer />
|
|
</div>
|
|
)
|
|
}
|