82 lines
2.8 KiB
TypeScript
82 lines
2.8 KiB
TypeScript
"use client";
|
|
|
|
import ReactLenis from "lenis/react";
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
|
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
|
import FooterBase from "@/components/sections/footer/FooterBase";
|
|
|
|
export default function ContactPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="text-stagger"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="pill"
|
|
contentWidth="medium"
|
|
sizing="medium"
|
|
background="none"
|
|
cardStyle="glass-elevated"
|
|
primaryButtonStyle="metallic"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="medium"
|
|
>
|
|
<ReactLenis root>
|
|
<NavbarLayoutFloatingOverlay
|
|
brandName="Webild"
|
|
navItems={[
|
|
{ name: "Home", href: "/" },
|
|
{ name: "Work", href: "/#work" },
|
|
{ name: "Services", href: "/#services" },
|
|
{ name: "About", href: "/about" },
|
|
{ name: "Contact", href: "/contact" }
|
|
]}
|
|
button={{ text: "Get Started", href: "/contact" }}
|
|
/>
|
|
|
|
<ContactSplit
|
|
tag="Get in Touch"
|
|
title="Let's Start Your Next Project"
|
|
description="Tell us about your ideas, and we'll help you bring them to life. Reach out today for a consultation."
|
|
background={{ variant: "rotated-rays-animated" }}
|
|
mediaPosition="right"
|
|
buttonText="Send Message"
|
|
inputPlaceholder="Your Email Address"
|
|
useInvertedBackground={false}
|
|
onSubmit={(email) => console.log("Contact form submitted with email:", email)}
|
|
/>
|
|
|
|
<FooterBase
|
|
logoText="Webild"
|
|
copyrightText="© 2026 | Webild"
|
|
columns={[
|
|
{
|
|
title: "Company", items: [
|
|
{ label: "About", href: "/about" },
|
|
{ label: "Services", href: "/#services" },
|
|
{ label: "Work", href: "/#work" },
|
|
{ label: "Contact", href: "/contact" },
|
|
],
|
|
},
|
|
{
|
|
title: "Services", items: [
|
|
{ label: "Web Development", href: "/#" },
|
|
{ label: "SEO", href: "/#" },
|
|
{ label: "Branding", href: "/#" },
|
|
{ label: "UI/UX Design", href: "/#" },
|
|
],
|
|
},
|
|
{
|
|
title: "Connect", items: [
|
|
{ label: "Twitter", href: "/#" },
|
|
{ label: "LinkedIn", href: "/#" },
|
|
{ label: "Instagram", href: "/#" },
|
|
{ label: "Dribbble", href: "/#" },
|
|
],
|
|
},
|
|
]}
|
|
/>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|