81 lines
2.7 KiB
TypeScript
81 lines
2.7 KiB
TypeScript
"use client";
|
|
|
|
import ReactLenis from "lenis/react";
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
|
import ContactForm from "@/components/form/ContactForm";
|
|
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
|
import { MessageCircle } from "lucide-react";
|
|
|
|
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", id: "/" },
|
|
{ name: "Services", id: "/services" },
|
|
{ name: "Work", id: "/work" },
|
|
{ name: "About", id: "/about" }
|
|
]}
|
|
button={{ text: "Get Started", href: "/contact" }}
|
|
/>
|
|
|
|
<ContactForm
|
|
title="Let's Build Something Great"
|
|
description="Tell us about your project or simply say hello. We're excited to hear from you!"
|
|
tag="Get in Touch"
|
|
tagIcon={MessageCircle}
|
|
inputPlaceholder="Your email address"
|
|
buttonText="Send Message"
|
|
termsText="By sending a message, you're confirming that you agree with our Privacy Policy."
|
|
centered={true}
|
|
/>
|
|
|
|
<FooterBaseCard
|
|
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: "/services" },
|
|
{ label: "SEO", href: "/services" },
|
|
{ label: "Branding", href: "/services" },
|
|
{ label: "UI/UX Design", href: "/services" },
|
|
],
|
|
},
|
|
{
|
|
title: "Connect", items: [
|
|
{ label: "Twitter", href: "#" },
|
|
{ label: "LinkedIn", href: "#" },
|
|
{ label: "Instagram", href: "#" },
|
|
{ label: "Dribbble", href: "#" },
|
|
],
|
|
},
|
|
]}
|
|
/>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|