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
383 B
TypeScript
Raw Normal View History

2025-01-05 14:33:52 -05:00
import Header from '../components/Header'
2025-01-05 16:46:40 -05:00
import ContactPg from '../components/pages/Contact'
2025-01-05 14:33:52 -05:00
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">
2025-01-05 16:46:40 -05:00
<ContactPg />
2025-01-05 14:33:52 -05:00
</main>
<Footer />
</div>
)
}