initial commit
This commit is contained in:
parent
60ed5888fa
commit
77990f0708
23 changed files with 483 additions and 121 deletions
15
app/contact/page.tsx
Normal file
15
app/contact/page.tsx
Normal file
|
@ -0,0 +1,15 @@
|
|||
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>
|
||||
)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue