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
2025-01-05 14:33:52 -05:00

15 lines
382 B
TypeScript

import Header from '../components/Header'
import ContactTmp from '../components/ContactTmp'
import Footer from '../components/Footer'
export default function Contact() {
return (
<div className="min-h-screen flex flex-col">
<Header />
<main className="flex-grow container mx-auto px-4 py-12">
<ContactTmp />
</main>
<Footer />
</div>
)
}