Update src/app/page.tsx

This commit is contained in:
2026-05-23 02:46:30 +00:00
parent 9602eaea9c
commit ea1162d60c

View File

@@ -4,12 +4,12 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import BlogCardTwo from '@/components/sections/blog/BlogCardTwo';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import HeroSplit from '@/components/sections/hero/HeroSplit';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import ContactCTA from '@/components/sections/contact/ContactCTA';
export default function LandingPage() {
return (
@@ -140,13 +140,15 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactCenter
<ContactCTA
tag="Guestbook"
title="Leave a note"
description="Feel free to leave a comment or share your thoughts here."
buttons={[
{
text: "Submit Message"},
]}
useInvertedBackground={false}
background={{
variant: "plain"}}
tag="Contact"
title="Stay Connected"
description="Sign up for occasional project updates."
/>
</div>
@@ -176,4 +178,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}