Update src/app/contact/page.tsx

This commit is contained in:
2026-03-06 13:39:22 +00:00
parent e49c869033
commit 90b5889066

View File

@@ -27,7 +27,6 @@ export default function ContactPage() {
secondaryButtonStyle="radial-glow"
headingFontWeight="bold"
>
{/* Navigation */}
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="Rami Haddad"
@@ -40,7 +39,6 @@ export default function ContactPage() {
/>
</div>
{/* Contact Section */}
<div id="contact-cta" data-section="contact-cta">
<ContactText
text="Vous avez un projet photo en tête ? Parlons de votre vision et créons quelque chose d'extraordinaire ensemble."
@@ -49,12 +47,11 @@ export default function ContactPage() {
useInvertedBackground={false}
buttons={[
{ text: "Contactez-moi", href: "#" },
{ text: "Voir Portfolio", href: "#" },
{ text: "Voir Portfolio", href: "portfolio" },
]}
/>
</div>
{/* Footer */}
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Rami Haddad"
@@ -64,4 +61,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
}