Merge version_2 into main #1

Merged
bender merged 3 commits from version_2 into main 2026-06-04 15:40:25 +00:00
Showing only changes of commit b0f0bad925 - Show all commits

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 ContactCenter from "@/components/sections/contact/ContactCenter";
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: "Portfolio", href: "/portfolio" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Contact", href: "/contact" }
]}
button={{ text: "Get Started", href: "/contact" }}
/>
<ContactCenter
tag="Get in Touch"
title="Let's Build Something Great Together"
description="Have a project in mind or just want to chat? Reach out to us and let's make your vision a reality."
background={{ variant: "rotated-rays-animated" }}
inputPlaceholder="Enter your email"
buttonText="Send Message"
termsText="By clicking Send Message you're confirming that you agree with our Terms and Conditions."
onSubmit={(email) => console.log("Contact form submitted with email:", email)}
useInvertedBackground={false}
/>
<FooterBase
logoText="Webild"
copyrightText="© 2026 | Webild"
columns={[
{
title: "Company", items: [
{ label: "About", href: "#about" },
{ label: "Services", href: "#services" },
{ label: "Portfolio", href: "/portfolio" },
{ 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>
);
}