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