This repository has been archived on 2025-03-08. You can view files and clone it, but cannot push or open issues or pull requests.
aidxnCC/app/about/page.tsx

16 lines
368 B
TypeScript
Raw Normal View History

import Header from '@/components/Header'
import AboutPg from '@/components/pages/About'
import Footer from '@/components/Footer'
2025-01-05 14:33:52 -05:00
export default function About() {
return (
<div className="min-h-screen flex flex-col">
<Header />
<main className="grow container mx-auto px-4 py-12">
2025-01-05 16:46:40 -05:00
<AboutPg />
2025-01-05 14:33:52 -05:00
</main>
<Footer />
</div>
)
}