Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 238de48097 | |||
| f06096bf21 | |||
| ef18856684 | |||
| 86ab866a0e |
113
src/app/page.tsx
113
src/app/page.tsx
@@ -30,11 +30,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "About", id: "about"},
|
||||
{
|
||||
name: "Menu", id: "menu"},
|
||||
{
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="Cora Windermere"
|
||||
/>
|
||||
@@ -45,10 +48,25 @@ export default function LandingPage() {
|
||||
title="Breakfast & Lunch in Windermere"
|
||||
description="Start your day with sunshine, fresh ingredients, and a warm, family-friendly atmosphere at Cora."
|
||||
buttons={[
|
||||
{ text: "Book a Table", href: "#contact" },
|
||||
{ text: "View Menu", href: "#menu" },
|
||||
{
|
||||
text: "Book a Table", href: "#contact"},
|
||||
{
|
||||
text: "View Menu", href: "#menu"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/fresh-food-breakfast_23-2147667234.jpg?_wi=1"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-beautiful-blonde-woman-wearing-white-shirt-standing-co-working-space-leaning-desk_74855-15151.jpg", alt: "Happy beautiful blonde woman"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-businesswoman-portrait-office_1262-1506.jpg", alt: "Young Businesswoman Portrait"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-portrait-green-eyed-brunette-woman-hair-band-white-t-shirt-against-wall-windows-cacti_197531-17042.jpg", alt: "Green-eyed brunette woman"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/stylish-woman-wearing-yellow-bandana_273609-13337.jpg", alt: "Stylish woman wearing yellow bandana"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/smiling-businessman-face-portrait-wearing-suit_53876-148135.jpg", alt: "Smiling businessman"},
|
||||
]}
|
||||
avatarText="Join our community of 15k+ happy morning guests"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -56,8 +74,10 @@ export default function LandingPage() {
|
||||
<InlineImageSplitTextAbout
|
||||
useInvertedBackground={false}
|
||||
heading={[
|
||||
{ type: "text", content: "Welcome to Our Table" },
|
||||
{ type: "image", src: "http://img.b2bpic.net/free-photo/medium-shot-family-eating-together_23-2148972776.jpg", alt: "Restaurant Interior" },
|
||||
{
|
||||
type: "text", content: "Welcome to Our Table"},
|
||||
{
|
||||
type: "image", src: "http://img.b2bpic.net/free-photo/medium-shot-family-eating-together_23-2148972776.jpg", alt: "Restaurant Interior"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -69,9 +89,18 @@ export default function LandingPage() {
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{ id: "1", name: "Classic Breakfast", price: "$16.95", variant: "Popular", imageSrc: "http://img.b2bpic.net/free-photo/egg-benedict-with-salmon_74190-677.jpg?_wi=1" },
|
||||
{ id: "2", name: "Signature Eggs Benny", price: "$18.50", variant: "Customer Favorite", imageSrc: "http://img.b2bpic.net/free-photo/selective-sandwich-with-shrimps_181624-60061.jpg?_wi=1" },
|
||||
{ id: "3", name: "Seasonal Fruit Platter", price: "$14.00", variant: "Fresh", imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-waffle-cakes-with-fresh-fruits-dark-background_140725-80332.jpg?_wi=1" },
|
||||
{
|
||||
id: "1", name: "Classic Breakfast", price: "$16.95", variant: "Popular", imageSrc: "http://img.b2bpic.net/free-photo/egg-benedict-with-salmon_74190-677.jpg?_wi=1"},
|
||||
{
|
||||
id: "2", name: "Signature Eggs Benny", price: "$18.50", variant: "Customer Favorite", imageSrc: "http://img.b2bpic.net/free-photo/selective-sandwich-with-shrimps_181624-60061.jpg?_wi=1"},
|
||||
{
|
||||
id: "3", name: "Seasonal Fruit Platter", price: "$14.00", variant: "Fresh", imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-waffle-cakes-with-fresh-fruits-dark-background_140725-80332.jpg?_wi=1"},
|
||||
{
|
||||
id: "4", name: "Hearty Morning Plate", price: "$17.25", variant: "Classic", imageSrc: "http://img.b2bpic.net/free-photo/festive-holiday-breakfast-table-flat-lay-food-photography_53876-95454.jpg"},
|
||||
{
|
||||
id: "5", name: "Berry French Toast", price: "$15.95", variant: "Sweet", imageSrc: "http://img.b2bpic.net/free-photo/pancakes-with-mixed-berry-fruit-white-plate_1203-9404.jpg"},
|
||||
{
|
||||
id: "6", name: "Gourmet Coffee Blend", price: "$4.50", variant: "Morning Fuel", imageSrc: "http://img.b2bpic.net/free-photo/front-view-cup-coffee-with-muffins_23-2148251619.jpg"},
|
||||
]}
|
||||
title="Our Popular Dishes"
|
||||
description="Hand-picked favorites to brighten your morning."
|
||||
@@ -80,14 +109,17 @@ export default function LandingPage() {
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardTwo
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{ id: "1", value: "15k+", description: "Happy Mornings" },
|
||||
{ id: "2", value: "4.8", description: "Star Google Rating" },
|
||||
{ id: "3", value: "20+", description: "Fresh Ingredients" },
|
||||
{
|
||||
id: "1", value: "15k+", description: "Happy Mornings"},
|
||||
{
|
||||
id: "2", value: "4.8", description: "Star Google Rating"},
|
||||
{
|
||||
id: "3", value: "20+", description: "Fresh Ingredients"},
|
||||
]}
|
||||
title="Serving Smiles Daily"
|
||||
description="Trusted by our community in Windermere."
|
||||
@@ -99,8 +131,16 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Sarah J.", date: "Oct 2023", title: "Great atmosphere!", quote: "The best brunch spot in Windermere. Family friendly and super cozy.", tag: "Regular", avatarSrc: "http://img.b2bpic.net/free-photo/beauty-style-fashion-femininity-concept-positive-beautiful-young-european-woman-blue-shirt-looking-camera-with-broad-happy-smile-being-good-mood-kitchen-interior-background_343059-2087.jpg" },
|
||||
{ id: "2", name: "Mike C.", date: "Sept 2023", title: "Fresh & Fast", quote: "Love the eggs benny. Fresh ingredients every single time.", tag: "Fan", avatarSrc: "http://img.b2bpic.net/free-photo/stylish-friends-sitting-cafe_273609-5466.jpg" },
|
||||
{
|
||||
id: "1", name: "Sarah J.", date: "Oct 2023", title: "Great atmosphere!", quote: "The best brunch spot in Windermere. Family friendly and super cozy.", tag: "Regular", avatarSrc: "http://img.b2bpic.net/free-photo/beauty-style-fashion-femininity-concept-positive-beautiful-young-european-woman-blue-shirt-looking-camera-with-broad-happy-smile-being-good-mood-kitchen-interior-background_343059-2087.jpg", imageSrc: "http://img.b2bpic.net/free-photo/fresh-food-breakfast_23-2147667234.jpg?_wi=2", imageAlt: "smiling customer portrait"},
|
||||
{
|
||||
id: "2", name: "Mike C.", date: "Sept 2023", title: "Fresh & Fast", quote: "Love the eggs benny. Fresh ingredients every single time.", tag: "Fan", avatarSrc: "http://img.b2bpic.net/free-photo/stylish-friends-sitting-cafe_273609-5466.jpg", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-family-eating-together_23-2148972776.jpg", imageAlt: "smiling customer portrait"},
|
||||
{
|
||||
id: "3", name: "Emily R.", date: "Aug 2023", title: "Amazing Service", quote: "Staff is wonderful and always smiling. Makes my morning.", tag: "Loyal", avatarSrc: "http://img.b2bpic.net/free-photo/confident-businessman-with-beard-smiling-camera-generated-by-ai_188544-33152.jpg", imageSrc: "http://img.b2bpic.net/free-photo/egg-benedict-with-salmon_74190-677.jpg?_wi=2", imageAlt: "smiling customer portrait"},
|
||||
{
|
||||
id: "4", name: "David K.", date: "July 2023", title: "Excellent Menu", quote: "The seasonal fruit platter is a must-have for summer.", tag: "Bruncher", avatarSrc: "http://img.b2bpic.net/free-photo/horizontal-shot-happy-females-have-cheerful-expressions-sit-close-each-other-cozy-cafe-surrounded-with-cocktails-dessert-meet-together-by-chance-resort-people-relations_273609-2437.jpg", imageSrc: "http://img.b2bpic.net/free-photo/selective-sandwich-with-shrimps_181624-60061.jpg?_wi=2", imageAlt: "smiling customer portrait"},
|
||||
{
|
||||
id: "5", name: "Jessica L.", date: "June 2023", title: "Perfect spot!", quote: "Cora never disappoints. My favorite place for a family breakfast.", tag: "Family", avatarSrc: "http://img.b2bpic.net/free-photo/young-friends-having-good-time_23-2148395391.jpg", imageSrc: "http://img.b2bpic.net/free-photo/top-view-yummy-waffle-cakes-with-fresh-fruits-dark-background_140725-80332.jpg?_wi=2", imageAlt: "smiling customer portrait"},
|
||||
]}
|
||||
title="Loved by Locals"
|
||||
description="Here is what our guests say."
|
||||
@@ -112,8 +152,12 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{ id: "1", title: "Do you accept reservations?", content: "Yes, we accept reservations via our online booking form." },
|
||||
{ id: "2", title: "Are you offering delivery?", content: "Yes, find us on Uber Eats and DoorDash." },
|
||||
{
|
||||
id: "1", title: "Do you accept reservations?", content: "Yes, we accept reservations via our online booking form."},
|
||||
{
|
||||
id: "2", title: "Are you offering delivery?", content: "Yes, find us on Uber Eats and DoorDash."},
|
||||
{
|
||||
id: "3", title: "Are you open on holidays?", content: "We follow special holiday hours, please check our social media."},
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Have questions about our hours or services?"
|
||||
@@ -124,13 +168,16 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "plain" }}
|
||||
background={{
|
||||
variant: "plain"}}
|
||||
tag="Let's Connect"
|
||||
title="Ready for a Great Morning?"
|
||||
description="Book your table or reach out to us with any questions about our breakfast offerings."
|
||||
buttons={[
|
||||
{ text: "Book a Table", href: "#" },
|
||||
{ text: "Contact Us", href: "mailto:info@cora-windermere.com" },
|
||||
{
|
||||
text: "Book a Table", href: "#"},
|
||||
{
|
||||
text: "Contact Us", href: "mailto:info@cora-windermere.com"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -139,8 +186,24 @@ export default function LandingPage() {
|
||||
<FooterBaseReveal
|
||||
logoText="Cora Windermere"
|
||||
columns={[
|
||||
{ title: "Navigate", items: [{ label: "Home", href: "#hero" }, { label: "About", href: "#about" }, { label: "Menu", href: "#menu" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||
{
|
||||
title: "Navigate", items: [
|
||||
{
|
||||
label: "Home", href: "#hero"},
|
||||
{
|
||||
label: "About", href: "#about"},
|
||||
{
|
||||
label: "Menu", href: "#menu"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{
|
||||
label: "Privacy Policy", href: "#"},
|
||||
{
|
||||
label: "Terms of Service", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
copyrightText="© 2024 Cora Windermere. All rights reserved."
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user