Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
328
src/app/page.tsx
328
src/app/page.tsx
@@ -12,7 +12,7 @@ import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||
import { Coffee, Leaf } from "lucide-react";
|
||||
import { Coffee, Leaf, Zap, Croissant, Laptop } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -32,18 +32,9 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "#menu",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
{ name: "About", id: "#about" },
|
||||
{ name: "Menu", id: "#menu" },
|
||||
{ name: "Contact", id: "#contact" },
|
||||
]}
|
||||
brandName="Lolina Cafe"
|
||||
/>
|
||||
@@ -51,66 +42,27 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplit
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Specialty Coffee Crafted for Connoisseurs"
|
||||
description="Experience single-origin espresso, hand-poured pourovers, and artisanal pastries in a thoughtfully designed space. Every cup tells a story."
|
||||
buttons={[
|
||||
{
|
||||
text: "Reserve Your Table",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-woman-sits-table-with-cocktail-lit-candle_140725-9075.jpg?_wi=1"
|
||||
buttons={[{ text: "Reserve Your Table", href: "#contact" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-woman-sits-table-with-cocktail-lit-candle_140725-9075.jpg"
|
||||
imageAlt="artisanal coffee pourover cafe setting"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/sandwich-cup-coffee-table_53876-63270.jpg",
|
||||
alt: "Sandwich and a cup of coffee on a table",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/people-hangout-together-coffee-shop_53876-31515.jpg",
|
||||
alt: "People hangout together at coffee shop",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-attractive-woman-striped-trench-coat-happily-talking-cellphone-sitting-near-big-window-while-spending-time-modern-cafe_574295-4851.jpg",
|
||||
alt: "Young attractive woman in striped trench coat happily talking on cellphone sitting near big window while spending time in modern cafe",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-drinking-coffee-cafe_1303-25732.jpg",
|
||||
alt: "Woman drinking coffee in a cafe",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-smiling-woman-standing-bar-coffee-shop_176532-11599.jpg",
|
||||
alt: "young woman smiling coffee shop",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/sandwich-cup-coffee-table_53876-63270.jpg", alt: "Sandwich and a cup of coffee on a table" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/people-hangout-together-coffee-shop_53876-31515.jpg", alt: "People hangout together at coffee shop" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-attractive-woman-striped-trench-coat-happily-talking-cellphone-sitting-near-big-window-while-spending-time-modern-cafe_574295-4851.jpg", alt: "Young attractive woman in striped trench coat happily talking on cellphone sitting near big window while spending time in modern cafe" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/woman-drinking-coffee-cafe_1303-25732.jpg", alt: "Woman drinking coffee in a cafe" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-smiling-woman-standing-bar-coffee-shop_176532-11599.jpg", alt: "young woman smiling coffee shop" },
|
||||
]}
|
||||
avatarText="Trusted by 1500+ daily coffee lovers"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Single Origin",
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Ethical Sourcing",
|
||||
icon: Leaf,
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Artisanal Craft",
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Refined Space",
|
||||
icon: Coffee,
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Locally Roasted",
|
||||
},
|
||||
{ type: "text", text: "Single Origin" },
|
||||
{ type: "text-icon", text: "Ethical Sourcing", icon: Leaf },
|
||||
{ type: "text", text: "Artisanal Craft" },
|
||||
{ type: "text-icon", text: "Refined Space", icon: Coffee },
|
||||
{ type: "text", text: "Locally Roasted" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -119,22 +71,10 @@ export default function LandingPage() {
|
||||
<InlineImageSplitTextAbout
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "Our Philosophy of Coffee",
|
||||
},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/coffee-cup-cheesecake-wooden-table-front-cushion-against-white-wall_23-2148067198.jpg",
|
||||
alt: "barista crafting specialty coffee focus",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Our Story",
|
||||
href: "#",
|
||||
},
|
||||
{ type: "text", content: "Our Philosophy of Coffee" },
|
||||
{ type: "image", src: "http://img.b2bpic.net/free-photo/coffee-cup-cheesecake-wooden-table-front-cushion-against-white-wall_23-2148067198.jpg", alt: "barista crafting specialty coffee focus" },
|
||||
]}
|
||||
buttons={[{ text: "Our Story", href: "#" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -143,34 +83,10 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Single-Origin Beans",
|
||||
description: "Ethically sourced and roasted.",
|
||||
buttonIcon: "Coffee",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coffee-cup_74190-96.jpg?_wi=1",
|
||||
imageAlt: "coffee cup on wooden table cafe",
|
||||
},
|
||||
{
|
||||
title: "Hand-Poured Craft",
|
||||
description: "Mastery in every drop.",
|
||||
buttonIcon: "Zap",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-s-hand-holding-baked-eclairs-with-almonds-wooden-table_23-2148161696.jpg?_wi=1",
|
||||
imageAlt: "fresh pastries display case cafe",
|
||||
},
|
||||
{
|
||||
title: "Artisanal Pastries",
|
||||
description: "Baked daily in-house.",
|
||||
buttonIcon: "Croissant",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-bearded-coffee-seller-pouring-coffee-shop_613910-443.jpg?_wi=1",
|
||||
imageAlt: "ethically sourced coffee bags rustic",
|
||||
},
|
||||
{
|
||||
title: "Refined Workspace",
|
||||
description: "Designed for focus.",
|
||||
buttonIcon: "Laptop",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/interior-modern-cafe-with-sofas-chairs-tables_169016-36774.jpg",
|
||||
imageAlt: "modern cafe interior comfortable seating",
|
||||
},
|
||||
{ title: "Single-Origin Beans", description: "Ethically sourced and roasted.", buttonIcon: Coffee, imageSrc: "http://img.b2bpic.net/free-photo/coffee-cup_74190-96.jpg", imageAlt: "coffee cup on wooden table cafe" },
|
||||
{ title: "Hand-Poured Craft", description: "Mastery in every drop.", buttonIcon: Zap, imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-s-hand-holding-baked-eclairs-with-almonds-wooden-table_23-2148161696.jpg", imageAlt: "fresh pastries display case cafe" },
|
||||
{ title: "Artisanal Pastries", description: "Baked daily in-house.", buttonIcon: Croissant, imageSrc: "http://img.b2bpic.net/free-photo/black-bearded-coffee-seller-pouring-coffee-shop_613910-443.jpg", imageAlt: "ethically sourced coffee bags rustic" },
|
||||
{ title: "Refined Workspace", description: "Designed for focus.", buttonIcon: Laptop, imageSrc: "http://img.b2bpic.net/free-photo/interior-modern-cafe-with-sofas-chairs-tables_169016-36774.jpg", imageAlt: "modern cafe interior comfortable seating" },
|
||||
]}
|
||||
title="Elevated Cafe Experience"
|
||||
description="Designed for connoisseurs, built for community."
|
||||
@@ -184,48 +100,12 @@ export default function LandingPage() {
|
||||
gridVariant="four-items-2x2-equal-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Signature Espresso",
|
||||
price: "$4.50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/espresso-coffee-glass-wooden-table_23-2147906716.jpg",
|
||||
imageAlt: "single origin espresso coffee",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Hand-Pour Pourover",
|
||||
price: "$6.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/spills-hot-water-prepare-filtered-coffee-from-silver-teapot-beautiful-transparent-chrome-drip-coffee-maker-white-simple-weights_346278-1316.jpg",
|
||||
imageAlt: "hand poured pourover coffee",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Almond Croissant",
|
||||
price: "$5.25",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/walnuts-leaves-near-drink-desserts_23-2147885859.jpg",
|
||||
imageAlt: "artisan croissant pastry",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Iced Oat Latte",
|
||||
price: "$5.75",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/adding-coffee-glass-water_176474-120135.jpg",
|
||||
imageAlt: "iced latte drink cafe",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Velvet Cappuccino",
|
||||
price: "$4.75",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/aroma-background-love-house-taste_1232-3951.jpg",
|
||||
imageAlt: "cappuccino coffee latte art",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Matcha Reserve",
|
||||
price: "$6.50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-drinking-cup-matcha-green-tea-with-latte-art_140725-7120.jpg",
|
||||
imageAlt: "matcha latte ceramic mug",
|
||||
},
|
||||
{ id: "p1", name: "Signature Espresso", price: "$4.50", imageSrc: "http://img.b2bpic.net/free-photo/espresso-coffee-glass-wooden-table_23-2147906716.jpg", imageAlt: "single origin espresso coffee" },
|
||||
{ id: "p2", name: "Hand-Pour Pourover", price: "$6.00", imageSrc: "http://img.b2bpic.net/free-photo/spills-hot-water-prepare-filtered-coffee-from-silver-teapot-beautiful-transparent-chrome-drip-coffee-maker-white-simple-weights_346278-1316.jpg", imageAlt: "hand poured pourover coffee" },
|
||||
{ id: "p3", name: "Almond Croissant", price: "$5.25", imageSrc: "http://img.b2bpic.net/free-photo/walnuts-leaves-near-drink-desserts_23-2147885859.jpg", imageAlt: "artisan croissant pastry" },
|
||||
{ id: "p4", name: "Iced Oat Latte", price: "$5.75", imageSrc: "http://img.b2bpic.net/free-photo/adding-coffee-glass-water_176474-120135.jpg", imageAlt: "iced latte drink cafe" },
|
||||
{ id: "p5", name: "Velvet Cappuccino", price: "$4.75", imageSrc: "http://img.b2bpic.net/free-photo/aroma-background-love-house-taste_1232-3951.jpg", imageAlt: "cappuccino coffee latte art" },
|
||||
{ id: "p6", name: "Matcha Reserve", price: "$6.50", imageSrc: "http://img.b2bpic.net/free-photo/woman-drinking-cup-matcha-green-tea-with-latte-art_140725-7120.jpg", imageAlt: "matcha latte ceramic mug" },
|
||||
]}
|
||||
title="Our Signature Offerings"
|
||||
description="Explore our curated specialty selections."
|
||||
@@ -237,61 +117,11 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Elena R.",
|
||||
date: "Oct 2023",
|
||||
title: "Regular",
|
||||
quote: "Best coffee in the city, hands down.",
|
||||
tag: "Coffee Fan",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/young-smiling-woman-standing-bar-coffee-shop_176532-11599.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-sits-table-with-cocktail-lit-candle_140725-9075.jpg?_wi=2",
|
||||
imageAlt: "young woman smiling coffee shop",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Mark D.",
|
||||
date: "Sep 2023",
|
||||
title: "Designer",
|
||||
quote: "The perfect quiet space to work.",
|
||||
tag: "Regular",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/smiling-casual-businesswoman-surfing-net-computer-drinking-coffee-while-listening-music-earphones-cafe_637285-168.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coffee-cup-cheesecake-wooden-table-front-cushion-against-white-wall_23-2148067198.jpg",
|
||||
imageAlt: "young woman smiling coffee shop",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Sarah W.",
|
||||
date: "Aug 2023",
|
||||
title: "Student",
|
||||
quote: "Love the atmosphere and pastries.",
|
||||
tag: "Student",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/pretty-blonde-woman-sitting-cafe_273609-6715.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/coffee-cup_74190-96.jpg?_wi=2",
|
||||
imageAlt: "young woman smiling coffee shop",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "James L.",
|
||||
date: "Jul 2023",
|
||||
title: "Local",
|
||||
quote: "Truly specialty coffee experience.",
|
||||
tag: "Local",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/business-woman-with-cup-coffee_1187-1544.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-s-hand-holding-baked-eclairs-with-almonds-wooden-table_23-2148161696.jpg?_wi=2",
|
||||
imageAlt: "young woman smiling coffee shop",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Chloe B.",
|
||||
date: "Jun 2023",
|
||||
title: "Coffee Nerd",
|
||||
quote: "Their roast quality is exceptional.",
|
||||
tag: "Expert",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/laughing-woman-with-coffee-cafe_23-2147765411.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-bearded-coffee-seller-pouring-coffee-shop_613910-443.jpg?_wi=2",
|
||||
imageAlt: "young woman smiling coffee shop",
|
||||
},
|
||||
{ id: "1", name: "Elena R.", date: "Oct 2023", title: "Regular", quote: "Best coffee in the city, hands down.", tag: "Coffee Fan", avatarSrc: "http://img.b2bpic.net/free-photo/young-smiling-woman-standing-bar-coffee-shop_176532-11599.jpg", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-sits-table-with-cocktail-lit-candle_140725-9075.jpg", imageAlt: "young woman smiling coffee shop" },
|
||||
{ id: "2", name: "Mark D.", date: "Sep 2023", title: "Designer", quote: "The perfect quiet space to work.", tag: "Regular", avatarSrc: "http://img.b2bpic.net/free-photo/smiling-casual-businesswoman-surfing-net-computer-drinking-coffee-while-listening-music-earphones-cafe_637285-168.jpg", imageSrc: "http://img.b2bpic.net/free-photo/coffee-cup-cheesecake-wooden-table-front-cushion-against-white-wall_23-2148067198.jpg", imageAlt: "young woman smiling coffee shop" },
|
||||
{ id: "3", name: "Sarah W.", date: "Aug 2023", title: "Student", quote: "Love the atmosphere and pastries.", tag: "Student", avatarSrc: "http://img.b2bpic.net/free-photo/pretty-blonde-woman-sitting-cafe_273609-6715.jpg", imageSrc: "http://img.b2bpic.net/free-photo/coffee-cup_74190-96.jpg", imageAlt: "young woman smiling coffee shop" },
|
||||
{ id: "4", name: "James L.", date: "Jul 2023", title: "Local", quote: "Truly specialty coffee experience.", tag: "Local", avatarSrc: "http://img.b2bpic.net/free-photo/business-woman-with-cup-coffee_1187-1544.jpg", imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-s-hand-holding-baked-eclairs-with-almonds-wooden-table_23-2148161696.jpg", imageAlt: "young woman smiling coffee shop" },
|
||||
{ id: "5", name: "Chloe B.", date: "Jun 2023", title: "Coffee Nerd", quote: "Their roast quality is exceptional.", tag: "Expert", avatarSrc: "http://img.b2bpic.net/free-photo/laughing-woman-with-coffee-cafe_23-2147765411.jpg", imageSrc: "http://img.b2bpic.net/free-photo/black-bearded-coffee-seller-pouring-coffee-shop_613910-443.jpg", imageAlt: "young woman smiling coffee shop" },
|
||||
]}
|
||||
title="Words from Our Community"
|
||||
description="Discover why Lolina is a destination."
|
||||
@@ -304,21 +134,9 @@ export default function LandingPage() {
|
||||
title="Lolina by the Numbers"
|
||||
tag="Our Growth"
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "1500+",
|
||||
description: "Happy Daily Customers",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "20+",
|
||||
description: "Single Origin Beans",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "5",
|
||||
description: "Expert Baristas",
|
||||
},
|
||||
{ id: "m1", value: "1500+", description: "Happy Daily Customers" },
|
||||
{ id: "m2", value: "20+", description: "Single Origin Beans" },
|
||||
{ id: "m3", value: "5", description: "Expert Baristas" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -329,27 +147,15 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Are your beans fair trade?",
|
||||
content: "Yes, we prioritize ethical sourcing.",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Do you have workspace?",
|
||||
content: "Yes, we offer cozy seating.",
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Can I reserve a table?",
|
||||
content: "Yes, contact us to book.",
|
||||
},
|
||||
{ id: "f1", title: "Are your beans fair trade?", content: "Yes, we prioritize ethical sourcing." },
|
||||
{ id: "f2", title: "Do you have workspace?", content: "Yes, we offer cozy seating." },
|
||||
{ id: "f3", title: "Can I reserve a table?", content: "Yes, contact us to book." },
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
title="Common Questions"
|
||||
description="Get to know Lolina Cafe."
|
||||
faqsAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-woman-sits-table-with-cocktail-lit-candle_140725-9075.jpg?_wi=3"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/side-view-woman-sits-table-with-cocktail-lit-candle_140725-9075.jpg"
|
||||
imageAlt="artisanal coffee pourover cafe setting"
|
||||
/>
|
||||
</div>
|
||||
@@ -360,24 +166,10 @@ export default function LandingPage() {
|
||||
title="Visit Lolina Cafe"
|
||||
description="Have a question? Drop by or reach out."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Name",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Your Email",
|
||||
required: true,
|
||||
},
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Your Email", required: true },
|
||||
]}
|
||||
textarea={{
|
||||
name: "msg",
|
||||
placeholder: "How can we help?",
|
||||
required: true,
|
||||
}}
|
||||
textarea={{ name: "msg", placeholder: "How can we help?", required: true }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-smiley-man-door_23-2149434485.jpg"
|
||||
/>
|
||||
</div>
|
||||
@@ -385,32 +177,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "#faq",
|
||||
},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "#contact",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Company", items: [{ label: "About", href: "#about" }, { label: "Menu", href: "#menu" }] },
|
||||
{ title: "Support", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }] },
|
||||
]}
|
||||
bottomLeftText="© 2024 Lolina Cafe"
|
||||
bottomRightText="All Rights Reserved"
|
||||
@@ -419,4 +187,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user