Switch to version 1: remove src/app/contact/page.tsx

This commit is contained in:
2026-04-15 03:38:50 +00:00
parent cba7c75d6a
commit 126c96552d

View File

@@ -1,51 +0,0 @@
"use client";
import { useState } from "react";
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 FooterMedia from "@/components/sections/footer/FooterMedia";
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: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Get Started", href: "/contact" }}
/>
<ContactText
text="Book Your Consultation"
animationType="entrance-slide"
background={{ variant: "rotated-rays-animated" }}
useInvertedBackground={false}
/>
<FooterMedia
logoText="Webild"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-2.webp?_wi=1"
copyrightText="© 2026 | Webild"
columns={[
{ title: "Company", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] }
]}
/>
</ReactLenis>
</ThemeProvider>
);
}