|
|
|
@@ -4,14 +4,14 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
|
|
import ReactLenis from "lenis/react";
|
|
|
|
import ReactLenis from "lenis/react";
|
|
|
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
|
|
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
|
|
|
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
|
|
|
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
|
|
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
|
|
|
import FooterBase from '@/components/sections/footer/FooterBase';
|
|
|
|
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
|
|
|
|
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
|
|
|
|
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
|
|
|
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
|
|
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
|
|
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
|
|
|
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
|
|
|
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
|
|
|
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
|
|
|
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
|
|
|
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
|
|
|
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
|
|
|
import { Award, CheckCircle, Clock, Star } from "lucide-react";
|
|
|
|
import { Award, CheckCircle, Star } from "lucide-react";
|
|
|
|
|
|
|
|
|
|
|
|
export default function LandingPage() {
|
|
|
|
export default function LandingPage() {
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
@@ -161,13 +161,27 @@ export default function LandingPage() {
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div id="footer" data-section="footer">
|
|
|
|
<div id="footer" data-section="footer">
|
|
|
|
<FooterSimple
|
|
|
|
<FooterBase
|
|
|
|
|
|
|
|
logoText="Artesano"
|
|
|
|
|
|
|
|
copyrightText="© 2025 Artesano. All rights reserved."
|
|
|
|
columns={[
|
|
|
|
columns={[
|
|
|
|
{ title: "Menu", items: [{ label: "Dinner" }, { label: "Drinks" }] },
|
|
|
|
{
|
|
|
|
{ title: "Legal", items: [{ label: "Privacy" }, { label: "Terms" }] }
|
|
|
|
title: "Discover",
|
|
|
|
|
|
|
|
items: [{ label: "Our Story", href: "#about" }, { label: "Signature Menu", href: "#menu" }]
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
title: "Service",
|
|
|
|
|
|
|
|
items: [{ label: "Reserve Now", href: "#contact" }, { label: "Locations", href: "#experience" }]
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
title: "Legal",
|
|
|
|
|
|
|
|
items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Use", href: "#" }]
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
title: "Connect",
|
|
|
|
|
|
|
|
items: [{ label: "Instagram", href: "#" }, { label: "Newsletter", href: "#" }]
|
|
|
|
|
|
|
|
}
|
|
|
|
]}
|
|
|
|
]}
|
|
|
|
bottomLeftText="© 2025 Artesano"
|
|
|
|
|
|
|
|
bottomRightText="Designed for the discerning palate."
|
|
|
|
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</ReactLenis>
|
|
|
|
</ReactLenis>
|
|
|
|
|