Add src/app/contact/page.tsx

This commit is contained in:
2026-06-03 05:00:13 +00:00
parent ddbc893208
commit b62e11041b

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

@@ -0,0 +1,81 @@
"use client";
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 FooterSimple from "@/components/sections/footer/FooterSimple";
export default function ContactPage() {
const updatedNavItems = [
{ name: "Work", href: "#work" },
{ name: "Services", href: "#services" },
{ name: "About", href: "#about" },
{ name: "Pricing", href: "/pricing" },
{ name: "Contact", href: "/contact" },
];
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={updatedNavItems}
button={{ text: "Get Started", href: "/contact" }}
/>
<ContactText
text="Let's build something extraordinary together. Reach out to discuss your project."
background={{ variant: "rotated-rays-animated" }}
buttons={[
{ text: "Email Us", href: "mailto:info@webuild.com" },
{ text: "Call Us", href: "tel:+1234567890" },
]}
useInvertedBackground={false}
animationType="entrance-slide"
/>
<FooterSimple
bottomLeftText="© 2026 | Webild"
bottomRightText="All rights reserved."
columns={[
{
title: "Company", items: [
{ label: "About", href: "#about" },
{ label: "Services", href: "#services" },
{ label: "Work", href: "#work" },
{ label: "Pricing", href: "/pricing" },
{ 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>
);
}