Update src/app/contact/page.tsx

This commit is contained in:
2026-05-11 14:47:33 +00:00
parent 54f975b6d3
commit 7f21cec1ae

View File

@@ -3,32 +3,45 @@
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import ContactText from "@/components/sections/contact/ContactText";
import FooterBase from "@/components/sections/footer/FooterBase";
import FooterSimple from "@/components/sections/footer/FooterSimple";
export default function ContactPage() {
return (
<ThemeProvider>
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Work", id: "/work" },
{ name: "Services", id: "/#services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Pricing", id: "/pricing" },
{ name: "Contact", id: "/contact" },
]}
/>
</div>
<FooterSimple
columns={[
{
title: "Navigate", items: [
{ label: "Home", href: "/" },
{ label: "About", href: "/about" },
{ label: "Pricing", href: "/pricing" },
],
},
]}
button={{ text: "Get Started", href: "/contact" }}
/>
<ContactText
text="Get in Touch with our AI Support Team"
background={{ variant: 'plain' }}
useInvertedBackground={false}
/>
<FooterBase
logoText="Webild"
leftLink={{ text: "Home", href: "/" }}
rightLink={{ text: "About", href: "/about" }}
bottomLeftText="© 2026 Webild"
/>
</ReactLenis>
</ThemeProvider>