Add src/app/contact/page.tsx

This commit is contained in:
2026-06-12 21:24:10 +00:00
parent 0332d38e3a
commit 3eb5129874

78
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,78 @@
"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 FooterBase from "@/components/sections/footer/FooterBase";
export default function WebAgency2ContactPage() {
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: "Work", id: "work" },
{ name: "Services", id: "services" },
{ name: "About", href: "/about" },
{ name: "Team", href: "/team" },
{ name: "Contact", href: "/contact" }
]}
button={{ text: "Get Started", href: "/contact" }}
/>
<ContactForm
title="Let's Build Something Great"
description="Ready to elevate your digital presence? Fill out the form below and our team will get back to you shortly."
tag="Contact Us"
inputPlaceholder="Your Email Address"
buttonText="Send Message"
onSubmit={(email) => console.log('Contact form submitted with email:', email)}
centered={true}
/>
<FooterBase
logoText="Webild"
copyrightText="© 2026 | Webild"
columns={[
{
title: "Company", items: [
{ label: "About", href: "/about" },
{ label: "Team", href: "/team" },
{ label: "Work", href: "#work" },
{ label: "Services", href: "#services" },
{ 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>
);
}