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/contact/page.tsx

15 lines
375 B
TypeScript
Raw Normal View History

import Header from '@/components/Header'
import ContactPg from '@/components/pages/Contact'
import Footer from '@/components/Footer'
2025-01-05 14:33:52 -05:00
export default function Contact() {
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
<ContactPg />
2025-01-05 14:33:52 -05:00
</main>
<Footer />
</div>
)
}