This commit is contained in:
2025-08-18 22:45:09 +02:00
parent 08b25f008b
commit b73beb1792
180 changed files with 5782 additions and 85 deletions

12
src/app/contact/page.jsx Normal file
View File

@@ -0,0 +1,12 @@
import { ContactHero } from "@/components/ContactHero"
export default function Contact() {
return (
<>
<ContactHero />
<main>
{/* Additional contact-related components can be added here */}
</main>
</>
)
}