Merge version_4 into main #7

Merged
bender merged 1 commits from version_4 into main 2026-04-17 16:15:24 +00:00

View File

@@ -3,13 +3,13 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import FooterCard from '@/components/sections/footer/FooterCard';
import HeroLogo from '@/components/sections/hero/HeroLogo';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
import TeamCardFive from '@/components/sections/team/TeamCardFive';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import { MessageSquare } from "lucide-react";
import { MessageSquare, Instagram, Twitter, Facebook } from "lucide-react";
export default function LandingPage() {
return (
@@ -29,10 +29,11 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Process", id: "/process" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "/contact" },
{ name: "Home", id: "#hero" },
{ name: "About", id: "#about" },
{ name: "Team", id: "#team" },
{ name: "Pricing", id: "#pricing" },
{ name: "FAQ", id: "#faq" },
]}
brandName="AutoClinic"
/>
@@ -44,9 +45,9 @@ export default function LandingPage() {
description="Professional garage services where your car is disassembled, inspected, and rebuilt with exacting standards. Experience mechanics the way it should be."
buttons={[
{
text: "View Our Process", href: "/process"},
text: "View Our Process", href: "#about"},
{
text: "Book Appointment", href: "/contact"},
text: "Book Appointment", href: "#pricing"},
]}
imageSrc="http://img.b2bpic.net/free-photo/mechanic-working-laptop_1170-1583.jpg"
/>
@@ -118,20 +119,14 @@ export default function LandingPage() {
</div>
<div id="footer-main" data-section="footer-main">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Services", href: "/services"},
{
label: "Process", href: "/process"},
{
label: "Contact", href: "/contact"},
],
},
]}
<FooterCard
logoText="AutoClinic"
copyrightText="© 2025 | All rights reserved"
socialLinks={[
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Twitter, href: "#", ariaLabel: "Twitter" },
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
]}
/>
</div>
</ReactLenis>