initial commit

This commit is contained in:
Aidan 2025-01-05 14:33:52 -05:00
parent 60ed5888fa
commit 77990f0708
23 changed files with 483 additions and 121 deletions

15
app/domains/page.tsx Normal file
View file

@ -0,0 +1,15 @@
import Header from '../components/Header'
import DomainTmp from '../components/DomainTmp'
import Footer from '../components/Footer'
export default function Domains() {
return (
<div className="min-h-screen flex flex-col">
<Header />
<main className="flex-grow container mx-auto px-4 py-12">
<DomainTmp />
</main>
<Footer />
</div>
)
}