Merge version_2 into main #2
285
src/app/page.tsx
285
src/app/page.tsx
@@ -10,7 +10,7 @@ import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||
import { Instagram, Star, Users } from "lucide-react";
|
||||
|
||||
@@ -33,21 +33,13 @@ export default function LandingPage() {
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "Our Story",
|
||||
id: "about",
|
||||
},
|
||||
name: "Our Story", id: "about"},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "products",
|
||||
},
|
||||
name: "Menu", id: "products"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="Lolo Café"
|
||||
/>
|
||||
@@ -56,77 +48,48 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
title="A Vintage Escape in Little Italy"
|
||||
description="Discover authentic flavors, cozy corners, and handcrafted perfection at Lolo Café. Your local vintage hideaway in Windsor."
|
||||
kpis={[
|
||||
{
|
||||
value: "4.8",
|
||||
label: "Google Rating",
|
||||
},
|
||||
value: "4.8", label: "Google Rating"},
|
||||
{
|
||||
value: "1.8k+",
|
||||
label: "Followers",
|
||||
},
|
||||
value: "1.8k+", label: "Followers"},
|
||||
{
|
||||
value: "Local",
|
||||
label: "In Little Italy",
|
||||
},
|
||||
value: "Local", label: "In Little Italy"},
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[
|
||||
{
|
||||
text: "View Our Menu",
|
||||
href: "#products",
|
||||
},
|
||||
text: "View Our Menu", href: "#products"},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202752-j88219qn.jpg?_wi=1"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-pretty-young-woman-smelling-her-coffee-drink_171337-15596.jpg",
|
||||
alt: "Portrait of a pretty young woman smelling her coffee drink",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-pretty-young-woman-smelling-her-coffee-drink_171337-15596.jpg", alt: "Portrait of a pretty young woman smelling her coffee drink"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-woman-drinking-coffee-morning-restaurant_231208-12314.jpg",
|
||||
alt: "Young woman drinking coffee in the morning at restaurant",
|
||||
},
|
||||
src: "http://img.b2bpic.net/young-woman-drinking-coffee-morning-restaurant_231208-12314.jpg", alt: "Young woman drinking coffee in the morning at restaurant"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/woman-drinking-coffee_23-2148006743.jpg",
|
||||
alt: "Woman drinking coffee",
|
||||
},
|
||||
src: "http://img.b2bpic.net/woman-drinking-coffee_23-2148006743.jpg", alt: "Woman drinking coffee"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/beautiful-girl-drinks-coffee_72229-1347.jpg",
|
||||
alt: "Beautiful girl drinks coffee.",
|
||||
},
|
||||
src: "http://img.b2bpic.net/beautiful-girl-drinks-coffee_72229-1347.jpg", alt: "Beautiful girl drinks coffee."},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-caucasian-man-enjoying-free-time-reading-book-while-sitting-outdoors-coffee-shop-lifestyle-concept_58466-11899.jpg",
|
||||
alt: "Portrait of caucasian man enjoying free time and reading a book while sitting outdoors at coffee shop. Lifestyle concept.",
|
||||
},
|
||||
src: "http://img.b2bpic.net/portrait-caucasian-man-enjoying-free-time-reading-book-while-sitting-outdoors-coffee-shop-lifestyle-concept_58466-11899.jpg", alt: "Portrait of caucasian man enjoying free time and reading a book while sitting outdoors at coffee shop. Lifestyle concept."},
|
||||
]}
|
||||
avatarText="Join our 1.8k+ local community members"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Vintage Charm",
|
||||
},
|
||||
type: "text", text: "Vintage Charm"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Artisanal Coffee",
|
||||
},
|
||||
type: "text", text: "Artisanal Coffee"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Fresh Pastries",
|
||||
},
|
||||
type: "text", text: "Fresh Pastries"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Cozy Atmosphere",
|
||||
},
|
||||
type: "text", text: "Cozy Atmosphere"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Little Italy Spirit",
|
||||
},
|
||||
type: "text", text: "Little Italy Spirit"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -138,13 +101,9 @@ export default function LandingPage() {
|
||||
description="Lolo Café is more than just coffee. We create a timeless space for connection, inspiration, and the finest artisanal beverages in Windsor."
|
||||
metrics={[
|
||||
{
|
||||
value: "10:30am",
|
||||
title: "Opening Hours",
|
||||
},
|
||||
value: "10:30am", title: "Opening Hours"},
|
||||
{
|
||||
value: "769 Erie St E",
|
||||
title: "Find Us",
|
||||
},
|
||||
value: "769 Erie St E", title: "Find Us"},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202753-43vzh4iu.jpg?_wi=1"
|
||||
mediaAnimation="slide-up"
|
||||
@@ -160,20 +119,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Classic Espresso",
|
||||
description: "Perfectly balanced, rich, and aromatic.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202753-66ch1ai3.jpg?_wi=1",
|
||||
},
|
||||
title: "Classic Espresso", description: "Perfectly balanced, rich, and aromatic.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202753-66ch1ai3.jpg?_wi=1"},
|
||||
{
|
||||
title: "Artisanal Lattés",
|
||||
description: "From Pistachio to Lavender, uniquely crafted.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202753-97fd5dpr.jpg?_wi=1",
|
||||
},
|
||||
title: "Artisanal Lattés", description: "From Pistachio to Lavender, uniquely crafted.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202753-97fd5dpr.jpg?_wi=1"},
|
||||
{
|
||||
title: "Fresh Pastries",
|
||||
description: "Daily selection of buttery croissants and treats.",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202753-34d12nkq.png?_wi=1",
|
||||
},
|
||||
title: "Fresh Pastries", description: "Daily selection of buttery croissants and treats.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202753-34d12nkq.png?_wi=1"},
|
||||
]}
|
||||
title="Our Signature Offerings"
|
||||
description="Handcrafted perfection in every cup."
|
||||
@@ -181,66 +131,24 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardTwo
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
brand: "Lolo",
|
||||
name: "Cappuccino",
|
||||
price: "$5.99",
|
||||
rating: 5,
|
||||
reviewCount: "120",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202753-66ch1ai3.jpg?_wi=2",
|
||||
},
|
||||
id: "p1", name: "Cappuccino", price: "$5.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202753-66ch1ai3.jpg?_wi=2"},
|
||||
{
|
||||
id: "p2",
|
||||
brand: "Lolo",
|
||||
name: "Pistachio Latte",
|
||||
price: "$9.50",
|
||||
rating: 5,
|
||||
reviewCount: "89",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202753-97fd5dpr.jpg?_wi=2",
|
||||
},
|
||||
id: "p2", name: "Pistachio Latte", price: "$9.50", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202753-97fd5dpr.jpg?_wi=2"},
|
||||
{
|
||||
id: "p3",
|
||||
brand: "Lolo",
|
||||
name: "Vanilla Latte",
|
||||
price: "$6.99",
|
||||
rating: 5,
|
||||
reviewCount: "56",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202753-34d12nkq.png?_wi=2",
|
||||
},
|
||||
id: "p3", name: "Vanilla Latte", price: "$6.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202753-34d12nkq.png?_wi=2"},
|
||||
{
|
||||
id: "p4",
|
||||
brand: "Lolo",
|
||||
name: "Turkish Coffee",
|
||||
price: "$3.99",
|
||||
rating: 4,
|
||||
reviewCount: "42",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202753-43vzh4iu.jpg?_wi=2",
|
||||
},
|
||||
id: "p4", name: "Turkish Coffee", price: "$3.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202753-43vzh4iu.jpg?_wi=2"},
|
||||
{
|
||||
id: "p5",
|
||||
brand: "Lolo",
|
||||
name: "Gilmore Girls",
|
||||
price: "$8.99",
|
||||
rating: 5,
|
||||
reviewCount: "78",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202752-j88219qn.jpg?_wi=2",
|
||||
},
|
||||
id: "p5", name: "Gilmore Girls", price: "$8.99", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202752-j88219qn.jpg?_wi=2"},
|
||||
{
|
||||
id: "p6",
|
||||
brand: "Lolo",
|
||||
name: "Matcha Latte",
|
||||
price: "$8.50",
|
||||
rating: 5,
|
||||
reviewCount: "95",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-with-white-headphones-smoothie-table_1157-2112.jpg",
|
||||
},
|
||||
id: "p6", name: "Matcha Latte", price: "$8.50", imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-with-white-headphones-smoothie-table_1157-2112.jpg"},
|
||||
]}
|
||||
title="The Menu"
|
||||
description="Explore our wide variety of hot, cold, and specialty drinks."
|
||||
@@ -255,25 +163,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "34",
|
||||
title: "Instagram Posts",
|
||||
description: "Captured moments",
|
||||
icon: Instagram,
|
||||
id: "m1", value: "34", title: "Instagram Posts", description: "Captured moments", icon: Instagram,
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "1.8k",
|
||||
title: "Local Fans",
|
||||
description: "Our café community",
|
||||
icon: Users,
|
||||
id: "m2", value: "1.8k", title: "Local Fans", description: "Our café community", icon: Users,
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "4.8",
|
||||
title: "Star Rating",
|
||||
description: "Love from guests",
|
||||
icon: Star,
|
||||
id: "m3", value: "4.8", title: "Star Rating", description: "Love from guests", icon: Star,
|
||||
},
|
||||
]}
|
||||
title="Why You'll Love Us"
|
||||
@@ -287,60 +183,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Sarah Miller",
|
||||
date: "Oct 2023",
|
||||
title: "Best Atmosphere",
|
||||
quote: "The vintage vibe is unmatched. My favorite place to write.",
|
||||
tag: "Regular",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/smiling-woman-with-white-headphones-smoothie-table_1157-2112.jpg",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202752-j88219qn.jpg?_wi=3",
|
||||
imageAlt: "happy cafe customer portrait",
|
||||
},
|
||||
id: "t1", name: "Sarah Miller", date: "Oct 2023", title: "Best Atmosphere", quote: "The vintage vibe is unmatched. My favorite place to write.", tag: "Regular", avatarSrc: "http://img.b2bpic.net/free-photo/smiling-woman-with-white-headphones-smoothie-table_1157-2112.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202752-j88219qn.jpg?_wi=3", imageAlt: "happy cafe customer portrait"},
|
||||
{
|
||||
id: "t2",
|
||||
name: "James Chen",
|
||||
date: "Nov 2023",
|
||||
title: "Incredible Coffee",
|
||||
quote: "The Pistachio Latte is a life-changer. Must try!",
|
||||
tag: "Coffee Lover",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/teen-boy-reading-book-cafe_23-2147860716.jpg",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202753-34d12nkq.png?_wi=3",
|
||||
imageAlt: "happy cafe customer portrait",
|
||||
},
|
||||
id: "t2", name: "James Chen", date: "Nov 2023", title: "Incredible Coffee", quote: "The Pistachio Latte is a life-changer. Must try!", tag: "Coffee Lover", avatarSrc: "http://img.b2bpic.net/teen-boy-reading-book-cafe_23-2147860716.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202753-34d12nkq.png?_wi=3", imageAlt: "happy cafe customer portrait"},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Elena Rossi",
|
||||
date: "Dec 2023",
|
||||
title: "Taste of Italy",
|
||||
quote: "Feels like home in the heart of Little Italy.",
|
||||
tag: "Local",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/smiley-senior-female-home-drinking-coffee_23-2148343454.jpg",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202753-43vzh4iu.jpg?_wi=3",
|
||||
imageAlt: "happy cafe customer portrait",
|
||||
},
|
||||
id: "t3", name: "Elena Rossi", date: "Dec 2023", title: "Taste of Italy", quote: "Feels like home in the heart of Little Italy.", tag: "Local", avatarSrc: "http://img.b2bpic.net/smiley-senior-female-home-drinking-coffee_23-2148343454.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202753-43vzh4iu.jpg?_wi=3", imageAlt: "happy cafe customer portrait"},
|
||||
{
|
||||
id: "t4",
|
||||
name: "David W.",
|
||||
date: "Jan 2024",
|
||||
title: "Wonderful Service",
|
||||
quote: "Such kind staff and the best croissants in Windsor.",
|
||||
tag: "Customer",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/positive-afro-american-woman-eith-curly-hair-closes-eyes-from-happiness-keeps-hand-near-heart-drinks-takeaway-coffe-enjoys-leisure-time-dressed-fashionable-clothes-isolated-green-wall_273609-47974.jpg",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202753-66ch1ai3.jpg?_wi=3",
|
||||
imageAlt: "happy cafe customer portrait",
|
||||
},
|
||||
id: "t4", name: "David W.", date: "Jan 2024", title: "Wonderful Service", quote: "Such kind staff and the best croissants in Windsor.", tag: "Customer", avatarSrc: "http://img.b2bpic.net/positive-afro-american-woman-eith-curly-hair-closes-eyes-from-happiness-keeps-hand-near-heart-drinks-takeaway-coffe-enjoys-leisure-time-dressed-fashionable-clothes-isolated-green-wall_273609-47974.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202753-66ch1ai3.jpg?_wi=3", imageAlt: "happy cafe customer portrait"},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Maria K.",
|
||||
date: "Feb 2024",
|
||||
title: "My Oasis",
|
||||
quote: "I spend every Sunday here. It's truly magical.",
|
||||
tag: "Sunday Regular",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/smiling-brunette-woman-using-smartphone-cafe_613910-11650.jpg",
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202753-97fd5dpr.jpg?_wi=3",
|
||||
imageAlt: "happy cafe customer portrait",
|
||||
},
|
||||
id: "t5", name: "Maria K.", date: "Feb 2024", title: "My Oasis", quote: "I spend every Sunday here. It's truly magical.", tag: "Sunday Regular", avatarSrc: "http://img.b2bpic.net/smiling-brunette-woman-using-smartphone-cafe_613910-11650.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202753-97fd5dpr.jpg?_wi=3", imageAlt: "happy cafe customer portrait"},
|
||||
]}
|
||||
title="What Our Patrons Say"
|
||||
description="Warm words from our wonderful community."
|
||||
@@ -353,20 +204,11 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
faqs={[
|
||||
{
|
||||
id: "q1",
|
||||
title: "Do you offer delivery?",
|
||||
content: "Yes, we offer both pickup and delivery options for your convenience.",
|
||||
},
|
||||
id: "q1", title: "Do you offer delivery?", content: "Yes, we offer both pickup and delivery options for your convenience."},
|
||||
{
|
||||
id: "q2",
|
||||
title: "Are you open on weekends?",
|
||||
content: "We are open from 10:30am until late both Saturday and Sunday.",
|
||||
},
|
||||
id: "q2", title: "Are you open on weekends?", content: "We are open from 10:30am until late both Saturday and Sunday."},
|
||||
{
|
||||
id: "q3",
|
||||
title: "Do you have vegan options?",
|
||||
content: "We offer a selection of non-coffee drinks and some dietary-inclusive snacks.",
|
||||
},
|
||||
id: "q3", title: "Do you have vegan options?", content: "We offer a selection of non-coffee drinks and some dietary-inclusive snacks."},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202753-43vzh4iu.jpg?_wi=4"
|
||||
title="Common Questions"
|
||||
@@ -383,22 +225,14 @@ export default function LandingPage() {
|
||||
description="Have questions or want to host an event? Send us a note."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Name",
|
||||
required: true,
|
||||
name: "name", type: "text", placeholder: "Your Name", required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Your Email",
|
||||
required: true,
|
||||
name: "email", type: "email", placeholder: "Your Email", required: true,
|
||||
},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "How can we help?",
|
||||
rows: 4,
|
||||
name: "message", placeholder: "How can we help?", rows: 4,
|
||||
}}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3DBin05bH0XaGIDH0EJxv99e8gc/uploaded-1777762202752-j88219qn.jpg?_wi=4"
|
||||
/>
|
||||
@@ -408,34 +242,23 @@ export default function LandingPage() {
|
||||
<FooterSimple
|
||||
columns={[
|
||||
{
|
||||
title: "Visit Us",
|
||||
items: [
|
||||
title: "Visit Us", items: [
|
||||
{
|
||||
label: "769 Erie St E, Windsor, ON",
|
||||
href: "#",
|
||||
},
|
||||
label: "769 Erie St E, Windsor, ON", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Hours",
|
||||
items: [
|
||||
title: "Hours", items: [
|
||||
{
|
||||
label: "Tue-Thu, Sun: 10:30am-10pm",
|
||||
href: "#",
|
||||
},
|
||||
label: "Tue-Thu, Sun: 10:30am-10pm", href: "#"},
|
||||
{
|
||||
label: "Fri-Sat: 10:30am-11pm",
|
||||
href: "#",
|
||||
},
|
||||
label: "Fri-Sat: 10:30am-11pm", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Follow",
|
||||
items: [
|
||||
title: "Follow", items: [
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "https://instagram.com/lolo.cafe_",
|
||||
},
|
||||
label: "Instagram", href: "https://instagram.com/lolo.cafe_"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user