improved site header, added contact form, content card carousel, footer, and more photos

This commit is contained in:
2026-05-28 21:20:47 +01:00
parent 6a579699e7
commit 74a908f07f
32 changed files with 1394 additions and 386 deletions

View File

@@ -1,5 +1,11 @@
export default function Page() {
return (
<h1>contact page</h1>
)
}
import ContactForm from '@/components/contact-form'
export default function ContactPage() {
return (
<div className="flex min-h-screen flex-col bg-zinc-50 font-sans dark:bg-black">
<main className="mx-auto flex w-full max-w-7xl flex-1 flex-col items-center px-8 py-16 sm:py-24">
<ContactForm />
</main>
</div>
)
}