Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
329
src/app/page.tsx
329
src/app/page.tsx
@@ -18,27 +18,22 @@ export default function LandingPage() {
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "menu",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
]}
|
||||
brandName="White Bear Restaurant"
|
||||
/>
|
||||
@@ -47,51 +42,20 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardRotatedCarousel
|
||||
background={{
|
||||
variant: "rotated-rays-static",
|
||||
}}
|
||||
variant: "rotated-rays-static"}}
|
||||
title="A Taste of the Adirondacks"
|
||||
description="Fresh, flavorful dining with a view in Lake Placid. Perfect for locals and visitors after exploring Whiteface Mountain."
|
||||
buttons={[
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
{
|
||||
text: "Get Directions",
|
||||
href: "#contact",
|
||||
},
|
||||
{ text: "View Menu", href: "#menu" },
|
||||
{ text: "Get Directions", href: "#contact" }
|
||||
]}
|
||||
carouselItems={[
|
||||
{
|
||||
id: "1",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-enjoying-glass-wine-vineyard-with-stunning-nature-landscape_23-2151514953.jpg?_wi=1",
|
||||
imageAlt: "Mountain view dining",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/room-home-vintage-pot-bright_1203-5039.jpg?_wi=1",
|
||||
imageAlt: "Outdoor terrace",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-chairs-grass-field-mountains-nature_53876-23280.jpg?_wi=1",
|
||||
imageAlt: "Lodge exterior",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-happy-partners-sitting-chairs_23-2149302372.jpg?_wi=1",
|
||||
imageAlt: "Patio view",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wide-shot-brown-house-surrounded-by-forest-spruce-trees-clouds_181624-5123.jpg?_wi=1",
|
||||
imageAlt: "Panoramic view",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/rural-patio-with-furniture-vegetation_23-2150698442.jpg",
|
||||
imageAlt: "Lodge sunset",
|
||||
},
|
||||
{ id: "1", imageSrc: "http://img.b2bpic.net/free-photo/people-enjoying-glass-wine-vineyard-with-stunning-nature-landscape_23-2151514953.jpg", imageAlt: "Mountain view dining" },
|
||||
{ id: "2", imageSrc: "http://img.b2bpic.net/free-photo/room-home-vintage-pot-bright_1203-5039.jpg", imageAlt: "Outdoor terrace" },
|
||||
{ id: "3", imageSrc: "http://img.b2bpic.net/free-photo/empty-chairs-grass-field-mountains-nature_53876-23280.jpg", imageAlt: "Lodge exterior" },
|
||||
{ id: "4", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-happy-partners-sitting-chairs_23-2149302372.jpg", imageAlt: "Patio view" },
|
||||
{ id: "5", imageSrc: "http://img.b2bpic.net/free-photo/wide-shot-brown-house-surrounded-by-forest-spruce-trees-clouds_181624-5123.jpg", imageAlt: "Panoramic view" },
|
||||
{ id: "6", imageSrc: "http://img.b2bpic.net/free-photo/rural-patio-with-furniture-vegetation_23-2150698442.jpg", imageAlt: "Lodge sunset" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -100,15 +64,8 @@ export default function LandingPage() {
|
||||
<InlineImageSplitTextAbout
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{
|
||||
type: "text",
|
||||
content: "Welcome to White Bear Restaurant",
|
||||
},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/cozy-living-room-with-rustic-candlelight-decor-generative-ai_188544-37106.jpg",
|
||||
alt: "Cozy restaurant interior",
|
||||
},
|
||||
{ type: "text", content: "Welcome to White Bear Restaurant" },
|
||||
{ type: "image", src: "http://img.b2bpic.net/free-photo/cozy-living-room-with-rustic-candlelight-decor-generative-ai_188544-37106.jpg", alt: "Cozy restaurant interior" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -120,42 +77,12 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Tortellini",
|
||||
price: "$22",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/overview-view-delicious-conchiglie-with-pepper-black-plate-knife-red-stripped-towel-gray-background_140725-141312.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Shrimp & Scallops",
|
||||
price: "$34",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/salmon-salad-with-fresh-vegetables_140725-2439.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Filet Mignon",
|
||||
price: "$42",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/ribeye-steak-finely-cooked-cut-served-with-tartar-sauce_114579-2030.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Calamari",
|
||||
price: "$16",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/squid-rings-plate-table_140725-1423.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Chicken & Bacon Wrap",
|
||||
price: "$18",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vegan-rice-paper-rolls-with-vegetables-sesam-served-plate-ready-eat_1220-6885.jpg",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Club Burger",
|
||||
price: "$20",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tasty-hamburger-menu-arrangement-with-copy-space_23-2148614055.jpg",
|
||||
},
|
||||
{ id: "1", name: "Tortellini", price: "$22", imageSrc: "http://img.b2bpic.net/free-photo/overview-view-delicious-conchiglie-with-pepper-black-plate-knife-red-stripped-towel-gray-background_140725-141312.jpg" },
|
||||
{ id: "2", name: "Shrimp & Scallops", price: "$34", imageSrc: "http://img.b2bpic.net/free-photo/salmon-salad-with-fresh-vegetables_140725-2439.jpg" },
|
||||
{ id: "3", name: "Filet Mignon", price: "$42", imageSrc: "http://img.b2bpic.net/free-photo/ribeye-steak-finely-cooked-cut-served-with-tartar-sauce_114579-2030.jpg" },
|
||||
{ id: "4", name: "Calamari", price: "$16", imageSrc: "http://img.b2bpic.net/free-photo/squid-rings-plate-table_140725-1423.jpg" },
|
||||
{ id: "5", name: "Chicken & Bacon Wrap", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/vegan-rice-paper-rolls-with-vegetables-sesam-served-plate-ready-eat_1220-6885.jpg" },
|
||||
{ id: "6", name: "Club Burger", price: "$20", imageSrc: "http://img.b2bpic.net/free-photo/tasty-hamburger-menu-arrangement-with-copy-space_23-2148614055.jpg" }
|
||||
]}
|
||||
title="Menu Highlights"
|
||||
description="Exquisite dishes crafted with fresh ingredients."
|
||||
@@ -167,27 +94,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
tag: "View",
|
||||
title: "Outdoor Seating",
|
||||
subtitle: "Fresh Air",
|
||||
description: "Breathtaking views of the Adirondack mountains.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-enjoying-time-together-restaurant_23-2147891181.jpg",
|
||||
},
|
||||
{
|
||||
tag: "Cozy",
|
||||
title: "Indoor Dining",
|
||||
subtitle: "Warmth",
|
||||
description: "A rustic, comfortable lodge atmosphere.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wooden-lampshade-wooden-chest-with-books-it-placed-garden_181624-5463.jpg",
|
||||
},
|
||||
{
|
||||
tag: "Family",
|
||||
title: "Atmosphere",
|
||||
subtitle: "Inclusive",
|
||||
description: "Perfect for families and gatherings.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/best-friends-hanging-out-restaurant_23-2149244675.jpg",
|
||||
},
|
||||
{ tag: "View", title: "Outdoor Seating", subtitle: "Fresh Air", description: "Breathtaking views of the Adirondack mountains.", imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-enjoying-time-together-restaurant_23-2147891181.jpg" },
|
||||
{ tag: "Cozy", title: "Indoor Dining", subtitle: "Warmth", description: "A rustic, comfortable lodge atmosphere.", imageSrc: "http://img.b2bpic.net/free-photo/wooden-lampshade-wooden-chest-with-books-it-placed-garden_181624-5463.jpg" },
|
||||
{ tag: "Family", title: "Atmosphere", subtitle: "Inclusive", description: "Perfect for families and gatherings.", imageSrc: "http://img.b2bpic.net/free-photo/best-friends-hanging-out-restaurant_23-2149244675.jpg" }
|
||||
]}
|
||||
title="Our Experience"
|
||||
description="Comfort meets scenic beauty in every corner."
|
||||
@@ -199,61 +108,11 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah J.",
|
||||
date: "Oct 2023",
|
||||
title: "Excellent!",
|
||||
quote: "Great place, great food, great service, great staff.",
|
||||
tag: "Service",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/beautiful-brunette-woman-evening-dress-smiling-holding-champaign-glass_176420-3752.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-enjoying-glass-wine-vineyard-with-stunning-nature-landscape_23-2151514953.jpg?_wi=2",
|
||||
imageAlt: "satisfied restaurant customer",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Mike T.",
|
||||
date: "Sept 2023",
|
||||
title: "Delicious!",
|
||||
quote: "Absolutely delicious burgers and wraps.",
|
||||
tag: "Food",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/confident-businessman-posing-thoughtfully-cafe_23-2147689187.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/room-home-vintage-pot-bright_1203-5039.jpg?_wi=2",
|
||||
imageAlt: "satisfied restaurant customer",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Emily R.",
|
||||
date: "Aug 2023",
|
||||
title: "Loved it",
|
||||
quote: "The mountain view while eating is unforgettable.",
|
||||
tag: "Atmosphere",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/close-up-people-spending-time-together_23-2149152906.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-chairs-grass-field-mountains-nature_53876-23280.jpg?_wi=2",
|
||||
imageAlt: "satisfied restaurant customer",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "David K.",
|
||||
date: "July 2023",
|
||||
title: "Five stars",
|
||||
quote: "Perfect stop after hiking Whiteface Mountain.",
|
||||
tag: "Value",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/having-lunch-spacious-restaurant_52683-117480.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-happy-partners-sitting-chairs_23-2149302372.jpg?_wi=2",
|
||||
imageAlt: "satisfied restaurant customer",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Jenny L.",
|
||||
date: "June 2023",
|
||||
title: "Recommended",
|
||||
quote: "A true Adirondack experience in Lake Placid.",
|
||||
tag: "Dining",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/merry-young-adult-enjoying-christmas-conversation-video-call-room-decorated-festivity-celebration-talking-woman-preparing-drink-wine-kitchen-with-joyful-ornaments_482257-28400.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wide-shot-brown-house-surrounded-by-forest-spruce-trees-clouds_181624-5123.jpg?_wi=2",
|
||||
imageAlt: "satisfied restaurant customer",
|
||||
},
|
||||
{ id: "1", name: "Sarah J.", date: "Oct 2023", title: "Excellent!", quote: "Great place, great food, great service, great staff.", tag: "Service", avatarSrc: "http://img.b2bpic.net/free-photo/beautiful-brunette-woman-evening-dress-smiling-holding-champaign-glass_176420-3752.jpg", imageSrc: "http://img.b2bpic.net/free-photo/people-enjoying-glass-wine-vineyard-with-stunning-nature-landscape_23-2151514953.jpg", imageAlt: "satisfied restaurant customer" },
|
||||
{ id: "2", name: "Mike T.", date: "Sept 2023", title: "Delicious!", quote: "Absolutely delicious burgers and wraps.", tag: "Food", avatarSrc: "http://img.b2bpic.net/free-photo/confident-businessman-posing-thoughtfully-cafe_23-2147689187.jpg", imageSrc: "http://img.b2bpic.net/free-photo/room-home-vintage-pot-bright_1203-5039.jpg", imageAlt: "satisfied restaurant customer" },
|
||||
{ id: "3", name: "Emily R.", date: "Aug 2023", title: "Loved it", quote: "The mountain view while eating is unforgettable.", tag: "Atmosphere", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-people-spending-time-together_23-2149152906.jpg", imageSrc: "http://img.b2bpic.net/free-photo/empty-chairs-grass-field-mountains-nature_53876-23280.jpg", imageAlt: "satisfied restaurant customer" },
|
||||
{ id: "4", name: "David K.", date: "July 2023", title: "Five stars", quote: "Perfect stop after hiking Whiteface Mountain.", tag: "Value", avatarSrc: "http://img.b2bpic.net/free-photo/having-lunch-spacious-restaurant_52683-117480.jpg", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-happy-partners-sitting-chairs_23-2149302372.jpg", imageAlt: "satisfied restaurant customer" },
|
||||
{ id: "5", name: "Jenny L.", date: "June 2023", title: "Recommended", quote: "A true Adirondack experience in Lake Placid.", tag: "Dining", avatarSrc: "http://img.b2bpic.net/free-photo/merry-young-adult-enjoying-christmas-conversation-video-call-room-decorated-festivity-celebration-talking-woman-preparing-drink-wine-kitchen-with-joyful-ornaments_482257-28400.jpg", imageSrc: "http://img.b2bpic.net/free-photo/wide-shot-brown-house-surrounded-by-forest-spruce-trees-clouds_181624-5123.jpg", imageAlt: "satisfied restaurant customer" }
|
||||
]}
|
||||
title="Guest Reviews"
|
||||
description="Average rating of 4.2 / 5 from over 200+ reviews."
|
||||
@@ -268,66 +127,12 @@ export default function LandingPage() {
|
||||
title="Our Gallery"
|
||||
description="A glimpse into our restaurant vibe."
|
||||
blogs={[
|
||||
{
|
||||
id: "1",
|
||||
category: "Vibe",
|
||||
title: "Restaurant Ambiance",
|
||||
excerpt: "Rustic design.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/there-are-glasses-wine-water-table-with-white-cloth-are-ready-dining_613910-3428.jpg",
|
||||
authorName: "White Bear",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/friends-eating-pizza-side-view_23-2149872410.jpg",
|
||||
date: "2023",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
category: "Drinks",
|
||||
title: "Signature Cocktails",
|
||||
excerpt: "Refreshing drinks.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-still-life-arrangement-with-water_23-2149176111.jpg",
|
||||
authorName: "White Bear",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/good-humoured-caucasian-woman-enjoying-healthy-food-indoor-shot-smiling-girl-eating-salad_197531-17196.jpg",
|
||||
date: "2023",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
category: "View",
|
||||
title: "Outdoor Terrace",
|
||||
excerpt: "Scenic vistas.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/landscape-pamukkale-turkey-sunset_661209-387.jpg",
|
||||
authorName: "White Bear",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/woman-having-delicious-breakfast_23-2148311708.jpg",
|
||||
date: "2023",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
category: "Design",
|
||||
title: "Lodge Details",
|
||||
excerpt: "Rustic woodwork.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/gardening-concept-with-rake-pine-cones_23-2147673230.jpg",
|
||||
authorName: "White Bear",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/positive-lifestyle-portrait-happy-exited-pretty-woman-with-pink-hairs-having-dinner-vintage-american-cafe-eating-hot-dog-french-fries-mil-shake-junk-food-cheat-meal-pastel-colors_291049-341.jpg",
|
||||
date: "2023",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
category: "Evening",
|
||||
title: "Sunset Dining",
|
||||
excerpt: "Beautiful glow.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/luxury-dining-room-illuminated-by-candlelight-glow-generated-by-ai_188544-24152.jpg",
|
||||
authorName: "White Bear",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-man-correcting-grammar-mistakes_23-2150171372.jpg",
|
||||
date: "2023",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
category: "Food",
|
||||
title: "Gourmet Platings",
|
||||
excerpt: "Fresh ingredients.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-meal-luxury-restaurant_23-2150598373.jpg",
|
||||
authorName: "White Bear",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/high-angle-friends-restaurant_23-2148395392.jpg",
|
||||
date: "2023",
|
||||
},
|
||||
{ id: "1", category: "Vibe", title: "Restaurant Ambiance", excerpt: "Rustic design.", imageSrc: "http://img.b2bpic.net/free-photo/there-are-glasses-wine-water-table-with-white-cloth-are-ready-dining_613910-3428.jpg", authorName: "White Bear", authorAvatar: "http://img.b2bpic.net/free-photo/friends-eating-pizza-side-view_23-2149872410.jpg", date: "2023" },
|
||||
{ id: "2", category: "Drinks", title: "Signature Cocktails", excerpt: "Refreshing drinks.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-still-life-arrangement-with-water_23-2149176111.jpg", authorName: "White Bear", authorAvatar: "http://img.b2bpic.net/free-photo/good-humoured-caucasian-woman-enjoying-healthy-food-indoor-shot-smiling-girl-eating-salad_197531-17196.jpg", date: "2023" },
|
||||
{ id: "3", category: "View", title: "Outdoor Terrace", excerpt: "Scenic vistas.", imageSrc: "http://img.b2bpic.net/free-photo/landscape-pamukkale-turkey-sunset_661209-387.jpg", authorName: "White Bear", authorAvatar: "http://img.b2bpic.net/free-photo/woman-having-delicious-breakfast_23-2148311708.jpg", date: "2023" },
|
||||
{ id: "4", category: "Design", title: "Lodge Details", excerpt: "Rustic woodwork.", imageSrc: "http://img.b2bpic.net/free-photo/gardening-concept-with-rake-pine-cones_23-2147673230.jpg", authorName: "White Bear", authorAvatar: "http://img.b2bpic.net/free-photo/positive-lifestyle-portrait-happy-exited-pretty-woman-with-pink-hairs-having-dinner-vintage-american-cafe-eating-hot-dog-french-fries-mil-shake-junk-food-cheat-meal-pastel-colors_291049-341.jpg", date: "2023" },
|
||||
{ id: "5", category: "Evening", title: "Sunset Dining", excerpt: "Beautiful glow.", imageSrc: "http://img.b2bpic.net/free-photo/luxury-dining-room-illuminated-by-candlelight-glow-generated-by-ai_188544-24152.jpg", authorName: "White Bear", authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-man-correcting-grammar-mistakes_23-2150171372.jpg", date: "2023" },
|
||||
{ id: "6", category: "Food", title: "Gourmet Platings", excerpt: "Fresh ingredients.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-meal-luxury-restaurant_23-2150598373.jpg", authorName: "White Bear", authorAvatar: "http://img.b2bpic.net/free-photo/high-angle-friends-restaurant_23-2148395392.jpg", date: "2023" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -336,8 +141,7 @@ export default function LandingPage() {
|
||||
<ContactCenter
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
tag="Visit Us"
|
||||
title="Lake Placid, NY"
|
||||
description="123 Mountain Lane, Lake Placid, NY. Open daily from 4 PM. Call +1 518-302-5235."
|
||||
@@ -349,44 +153,23 @@ export default function LandingPage() {
|
||||
logoText="White Bear"
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "#hero",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "#about",
|
||||
},
|
||||
],
|
||||
title: "Quick Links", items: [
|
||||
{ label: "Home", href: "#hero" },
|
||||
{ label: "Menu", href: "#menu" },
|
||||
{ label: "About", href: "#about" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Social",
|
||||
items: [
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Facebook",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
title: "Social", items: [
|
||||
{ label: "Instagram", href: "#" },
|
||||
{ label: "Facebook", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2023 White Bear Restaurant."
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user