Add src/app/contact/page.tsx

This commit is contained in:
2026-06-02 14:38:24 +00:00
parent aefa015522
commit 0b8a67b3e0

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

@@ -0,0 +1,111 @@
"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 TextAbout from "@/components/sections/about/TextAbout";
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: "Work", id: "work" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Information", id: "/information" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Get Started", href: "/contact" }}
/>
<ContactText
tag="Contact Us"
title="Let's Build Something Great Together."
description="Whether you have a question, need a quote, or want to collaborate, our team is ready to help."
background={{ variant: "sparkles-gradient" }}
buttons={[
{ text: "Book a Consultation", href: "mailto:info@webuild.com" }
]}
buttonAnimation="slide-up"
useInvertedBackground={false}
/>
<TextAbout
tag="Reach Out"
title="Contact Details"
description={
`
<p><strong>Email:</strong> hello@webuild.com</p>
<p><strong>Phone:</strong> +1 (555) 123-4567</p>
`
}
useInvertedBackground={true}
buttons={[
{ text: "Email Us", href: "mailto:hello@webuild.com" },
{ text: "Call Us", href: "tel:+15551234567" }
]}
/>
<TextAbout
tag="Find Us"
title="Our Office & Hours"
description={
`
<p><strong>Address:</strong> 123 Digital Drive, Suite 100, Innovation City, 90210</p>
<p>A map integration will be available here soon!</p>
<br/>
<p><strong>Business Hours:</strong></p>
<p>Monday - Friday: 9:00 AM - 5:00 PM</p>
<p>Saturday - Sunday: Closed</p>
`
}
useInvertedBackground={false}
/>
<FooterBase
logoText="Webild"
copyrightText="© 2026 | Webild"
columns={[
{
title: "Company", items: [
{ label: "About", href: "#about" },
{ label: "Services", href: "#services" },
{ label: "Work", href: "#work" },
{ label: "Information", href: "/information" },
{ 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>
);
}