Update src/app/contact/page.tsx
This commit is contained in:
@@ -26,9 +26,9 @@ export default function WebAgency2ContactPage() {
|
||||
navItems={[
|
||||
{ name: "Work", id: "work" },
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "About", href: "/about" },
|
||||
{ name: "Team", href: "/team" },
|
||||
{ name: "Contact", href: "/contact" }
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Team", id: "/team" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
@@ -40,6 +40,7 @@ export default function WebAgency2ContactPage() {
|
||||
buttonText="Send Message"
|
||||
onSubmit={(email) => console.log('Contact form submitted with email:', email)}
|
||||
centered={true}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<FooterBase
|
||||
logoText="Webild"
|
||||
@@ -51,28 +52,28 @@ export default function WebAgency2ContactPage() {
|
||||
{ label: "Team", href: "/team" },
|
||||
{ label: "Work", href: "#work" },
|
||||
{ label: "Services", href: "#services" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
{ label: "Contact", href: "/contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Web Development", href: "#" },
|
||||
{ label: "SEO", href: "#" },
|
||||
{ label: "Branding", href: "#" },
|
||||
{ label: "UI/UX Design", href: "#" },
|
||||
],
|
||||
{ label: "UI/UX Design", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Twitter", href: "#" },
|
||||
{ label: "LinkedIn", href: "#" },
|
||||
{ label: "Instagram", href: "#" },
|
||||
{ label: "Dribbble", href: "#" },
|
||||
],
|
||||
},
|
||||
{ label: "Dribbble", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user