16 lines
369 B
TypeScript
16 lines
369 B
TypeScript
import { Header } from "@/components/header"
|
|
import { AboutSection } from "@/components/about-section"
|
|
import { Footer } from "@/components/footer"
|
|
|
|
export default function AboutPage() {
|
|
return (
|
|
<div className="min-h-screen flex flex-col">
|
|
<Header />
|
|
<main className="flex-1">
|
|
<AboutSection />
|
|
</main>
|
|
<Footer />
|
|
</div>
|
|
)
|
|
}
|