M-Gabrielly d4cb5f98e0 refactor(structure): Organizes the structure of the app and components folders
- 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.
2025-11-05 18:06:13 -03:00

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>
)
}