Merge version_3_1781557198188 into main

Merge version_3_1781557198188 into main
This commit was merged in pull request #6.
This commit is contained in:
2026-06-15 21:02:02 +00:00

View File

@@ -3,9 +3,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FaqTwoColumn from '@/components/sections/faq/FaqTwoColumn';
import FeatureCardSix from '@/components/sections/feature/FeatureCardSix';
import FooterBrand from '@/components/sections/footer/FooterBrand';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
@@ -114,7 +114,7 @@ export default function LandingPage() {
</div>
<div id="faq" data-section="faq">
<FaqSplitMedia
<FaqTwoColumn
tag="FAQ"
title="Common Questions"
description="Need more information? Here are answers to commonly asked questions."
@@ -128,24 +128,24 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactCenter
background="transparent"
useInvertedBackground={false}
tag="Contact"
title="Get in Touch"
description="Sign up for our newsletter or contact us directly."
inputPlaceholder="Enter your email"
buttonText="Subscribe"
onSubmit={(email) => console.log("Submitted:", email)}
onSubmit={(data) => console.log("Submitted:", data)}
/>
</div>
<div id="footer" data-section="footer">
<FooterBrand
<FooterSimple
brand="Kare Accounting Services"
columns={[
{ title: "Links", items: [{ label: "About", href: "#about" }, { label: "Services", href: "#services" }, { label: "Contact", href: "#contact" }] },
{ title: "Location", items: [{ label: "011 854 1357" }, { label: "63 Flamingo St, Lenasia" }] },
]}
copyright="© 2024 Kare Accounting Services. All rights reserved."
links={[]}
/>
</div>
</ReactLenis>