Update src/app/contact/page.tsx

This commit is contained in:
2026-05-23 05:11:33 +00:00
parent e68a1576ab
commit 8eb421e88e

View File

@@ -2,12 +2,11 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ContactCTA from "@/components/sections/contact/ContactCTA";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import FooterSimple from "@/components/sections/footer/FooterSimple";
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -22,110 +21,34 @@ export default function LandingPage() {
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Work",
id: "/work",
},
{
name: "Services",
id: "/services",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="KJ Web Studio"
/>
</div>
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "Work", id: "/work" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
]}
brandName="KJ Web Studio"
/>
<ContactCTA
tag="Get In Touch"
title="Ready to start your project?"
description="We are here to help your local business grow. Let's discuss your goals and how we can achieve them."
buttons={[{ text: "Send Message" }]}
background={{ variant: "glowing-orb" }}
useInvertedBackground={false}
/>
<div id="contact-page" data-section="contact-page">
<ContactCenter
useInvertedBackground={false}
background={{
variant: "plain",
}}
tag="Contact"
title="Let's build your website."
description="Reach out to discuss your project. kjwebstudio@outlook.com"
buttonText="Send Message"
/>
</div>
<div id="blog" data-section="blog">
<BlogCardOne
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Agency Insights"
description="Stay updated with industry trends."
blogs={[
{
id: "b1",
category: "Design",
title: "Why Conversion Matters",
excerpt: "Learn how small changes impact user behavior.",
imageSrc: "http://img.b2bpic.net/free-photo/laptop-with-blank-white-screen-turquoise-table-with-nearby-chair_23-2147924199.jpg",
authorName: "KJ Admin",
authorAvatar: "http://img.b2bpic.net/free-photo/ideas-creation-design-process-icon_53876-124499.jpg",
date: "2024-10-01",
},
{
id: "b2",
category: "Local SEO",
title: "Local SEO Tips",
excerpt: "How to get found in your city.",
imageSrc: "http://img.b2bpic.net/free-photo/sales-assistant-planning-business-charts-digital-laptop-working-with-e-commerce-e-shopping-management-company-office-manager-using-statistics-develop-creative-project_482257-39076.jpg",
authorName: "KJ Admin",
authorAvatar: "http://img.b2bpic.net/free-photo/business-brainstorm-planning-work-ideas-concept_53876-120969.jpg",
date: "2024-09-20",
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Company",
items: [
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Services",
items: [
{
label: "Design",
href: "/services",
},
{
label: "Leads",
href: "/services",
},
],
},
]}
bottomLeftText="© 2024 KJ Web Studio"
bottomRightText="kjwebstudio@outlook.com"
/>
</div>
<FooterSimple
columns={[
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] },
{ title: "Services", items: [{ label: "Design", href: "/services" }, { label: "Leads", href: "/services" }] },
]}
bottomLeftText="© 2024 KJ Web Studio"
bottomRightText="kjwebstudio@outlook.com"
/>
</ReactLenis>
</ThemeProvider>
);
}
}