Update src/app/page.tsx
This commit is contained in:
241
src/app/page.tsx
241
src/app/page.tsx
@@ -29,22 +29,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Our Story",
|
||||
id: "/our-story",
|
||||
},
|
||||
{
|
||||
name: "Find Us",
|
||||
id: "/find-us",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Our Story", id: "/our-story" },
|
||||
{ name: "Find Us", id: "/find-us" },
|
||||
]}
|
||||
brandName="Meades Cafe"
|
||||
/>
|
||||
@@ -52,94 +40,37 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Dungarvan's Favourite Seat."
|
||||
description="Right on the square. Right in the heart of it."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/smiling-senior-businessman-sitting-stairs_1262-3109.jpg",
|
||||
alt: "Local regular",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-joyful-woman-laughs-happily-keeps-arms-folded-expresses-positive-emotions-grins-from-happiness-dressed-casual-jumper-isolated-blue-wall-has-fun-hears-funny-joke_273609-44695.jpg",
|
||||
alt: "Happy customer",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/smiley-employee-making-coffee_23-2148366606.jpg",
|
||||
alt: "Friendly staff",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/people-helping-each-other-community_23-2149139746.jpg",
|
||||
alt: "Cyclist visitor",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-work_23-2149304143.jpg",
|
||||
alt: "Regular visitor",
|
||||
},
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "See Our Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
text: "Find Us",
|
||||
href: "/find-us",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/smiling-senior-businessman-sitting-stairs_1262-3109.jpg", alt: "Local regular" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/happy-joyful-woman-laughs-happily-keeps-arms-folded-expresses-positive-emotions-grins-from-happiness-dressed-casual-jumper-isolated-blue-wall-has-fun-hears-funny-joke_273609-44695.jpg", alt: "Happy customer" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/smiley-employee-making-coffee_23-2148366606.jpg", alt: "Friendly staff" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/people-helping-each-other-community_23-2149139746.jpg", alt: "Cyclist visitor" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-work_23-2149304143.jpg", alt: "Regular visitor" },
|
||||
]}
|
||||
buttons={[{ text: "See Our Menu", href: "/menu" }, { text: "Find Us", href: "/find-us" }]}
|
||||
buttonAnimation="slide-up"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Locally Roasted",
|
||||
icon: Coffee,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Award Winning",
|
||||
icon: Award,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Artisan Bakes",
|
||||
icon: Croissant,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Heart of Town",
|
||||
icon: MapPin,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Friendly Atmosphere",
|
||||
icon: Users,
|
||||
},
|
||||
{ type: "text-icon", text: "Locally Roasted", icon: Coffee },
|
||||
{ type: "text-icon", text: "Award Winning", icon: Award },
|
||||
{ type: "text-icon", text: "Artisan Bakes", icon: Croissant },
|
||||
{ type: "text-icon", text: "Heart of Town", icon: MapPin },
|
||||
{ type: "text-icon", text: "Friendly Atmosphere", icon: Users },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="trust" data-section="trust">
|
||||
<FeatureBorderGlow
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
icon: Star,
|
||||
title: "Loved by Locals",
|
||||
description: "Generations of Dungarvan stories.",
|
||||
},
|
||||
{
|
||||
icon: Coffee,
|
||||
title: "Legendary Coffee",
|
||||
description: "Expertly roasted, perfectly poured.",
|
||||
},
|
||||
{
|
||||
icon: MapPin,
|
||||
title: "Grattan Square",
|
||||
description: "The best view in Waterford.",
|
||||
},
|
||||
{ icon: Star, title: "Loved by Locals", description: "Generations of Dungarvan stories." },
|
||||
{ icon: Coffee, title: "Legendary Coffee", description: "Expertly roasted, perfectly poured." },
|
||||
{ icon: MapPin, title: "Grattan Square", description: "The best view in Waterford." },
|
||||
]}
|
||||
title="The Meades Experience"
|
||||
description="Timeless quality in the heart of Grattan Square."
|
||||
@@ -151,61 +82,11 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah J.",
|
||||
date: "Oct 2024",
|
||||
title: "Best in town",
|
||||
quote: "Maisy always remembers my order. The coffee is unmatched.",
|
||||
tag: "Regular",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/smiling-senior-businessman-sitting-stairs_1262-3109.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-senior-businessman-sitting-stairs_1262-3109.jpg",
|
||||
imageAlt: "person portrait indoor cafe",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Liam D.",
|
||||
date: "Sept 2024",
|
||||
title: "Cosy vibe",
|
||||
quote: "The lemon meringue pie is to die for. Love watching the square.",
|
||||
tag: "Visitor",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/happy-joyful-woman-laughs-happily-keeps-arms-folded-expresses-positive-emotions-grins-from-happiness-dressed-casual-jumper-isolated-blue-wall-has-fun-hears-funny-joke_273609-44695.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-joyful-woman-laughs-happily-keeps-arms-folded-expresses-positive-emotions-grins-from-happiness-dressed-casual-jumper-isolated-blue-wall-has-fun-hears-funny-joke_273609-44695.jpg",
|
||||
imageAlt: "visitor portrait cafe",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Fiona M.",
|
||||
date: "Aug 2024",
|
||||
title: "Staff are amazing",
|
||||
quote: "Shannon and Róisín go above and beyond every single time.",
|
||||
tag: "Local",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/smiley-employee-making-coffee_23-2148366606.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-employee-making-coffee_23-2148366606.jpg",
|
||||
imageAlt: "cafe staff smiling",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Jack B.",
|
||||
date: "July 2024",
|
||||
title: "Perfect spot",
|
||||
quote: "Great atmosphere. The homemade baking is a real treat.",
|
||||
tag: "Cyclist",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/people-helping-each-other-community_23-2149139746.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-helping-each-other-community_23-2149139746.jpg",
|
||||
imageAlt: "cyclist resting cafe",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Kate L.",
|
||||
date: "June 2024",
|
||||
title: "Heart of Dungarvan",
|
||||
quote: "Couldn't imagine the square without Meades.",
|
||||
tag: "Regular",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-work_23-2149304143.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-work_23-2149304143.jpg",
|
||||
imageAlt: "regular customer portrait",
|
||||
},
|
||||
{ id: "1", name: "Sarah J.", date: "Oct 2024", title: "Best in town", quote: "Maisy always remembers my order. The coffee is unmatched.", tag: "Regular", avatarSrc: "http://img.b2bpic.net/free-photo/smiling-senior-businessman-sitting-stairs_1262-3109.jpg" },
|
||||
{ id: "2", name: "Liam D.", date: "Sept 2024", title: "Cosy vibe", quote: "The lemon meringue pie is to die for. Love watching the square.", tag: "Visitor", avatarSrc: "http://img.b2bpic.net/free-photo/happy-joyful-woman-laughs-happily-keeps-arms-folded-expresses-positive-emotions-grins-from-happiness-dressed-casual-jumper-isolated-blue-wall-has-fun-hears-funny-joke_273609-44695.jpg" },
|
||||
{ id: "3", name: "Fiona M.", date: "Aug 2024", title: "Staff are amazing", quote: "Shannon and Róisín go above and beyond every single time.", tag: "Local", avatarSrc: "http://img.b2bpic.net/free-photo/smiley-employee-making-coffee_23-2148366606.jpg" },
|
||||
{ id: "4", name: "Jack B.", date: "July 2024", title: "Perfect spot", quote: "Great atmosphere. The homemade baking is a real treat.", tag: "Cyclist", avatarSrc: "http://img.b2bpic.net/free-photo/people-helping-each-other-community_23-2149139746.jpg" },
|
||||
{ id: "5", name: "Kate L.", date: "June 2024", title: "Heart of Dungarvan", quote: "Couldn't imagine the square without Meades.", tag: "Regular", avatarSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-work_23-2149304143.jpg" },
|
||||
]}
|
||||
title="What Our Regulars Say"
|
||||
description="Customer love for Maisy, Róisín, Shannon and the team."
|
||||
@@ -220,16 +101,8 @@ export default function LandingPage() {
|
||||
description="Everything you need to know about Meades."
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Do you offer vegan options?",
|
||||
content: "Yes, we have a selection of plant-based milks and daily baked vegan treats.",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Can I reserve a table?",
|
||||
content: "We operate a walk-in policy to keep the atmosphere open and inviting for everyone.",
|
||||
},
|
||||
{ id: "1", title: "Do you offer vegan options?", content: "Yes, we have a selection of plant-based milks and daily baked vegan treats." },
|
||||
{ id: "2", title: "Can I reserve a table?", content: "We operate a walk-in policy to keep the atmosphere open and inviting for everyone." },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -242,70 +115,20 @@ export default function LandingPage() {
|
||||
title="Cafe Notes"
|
||||
description="Stories from behind the counter."
|
||||
blogs={[
|
||||
{
|
||||
id: "1",
|
||||
category: "Community",
|
||||
title: "A Morning in Grattan Square",
|
||||
excerpt: "The story behind our favourite corner of the world.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-serve-restaurant-outdoor-chairs_1203-4492.jpg?_wi=1",
|
||||
authorName: "Maisy",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/smiley-employee-making-coffee_23-2148366606.jpg",
|
||||
date: "Jan 2025",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
category: "Recipe",
|
||||
title: "Secrets of our Scones",
|
||||
excerpt: "Why our cream tea is a local favourite.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cream-puff-plate_1339-6687.jpg?_wi=1",
|
||||
authorName: "Róisín",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-work_23-2149304143.jpg",
|
||||
date: "Dec 2024",
|
||||
},
|
||||
{ id: "1", category: "Community", title: "A Morning in Grattan Square", excerpt: "The story behind our favourite corner of the world.", imageSrc: "http://img.b2bpic.net/free-photo/modern-serve-restaurant-outdoor-chairs_1203-4492.jpg", authorName: "Maisy", authorAvatar: "http://img.b2bpic.net/free-photo/smiley-employee-making-coffee_23-2148366606.jpg", date: "Jan 2025" },
|
||||
{ id: "2", category: "Recipe", title: "Secrets of our Scones", excerpt: "Why our cream tea is a local favourite.", imageSrc: "http://img.b2bpic.net/free-photo/cream-puff-plate_1339-6687.jpg", authorName: "Róisín", authorAvatar: "http://img.b2bpic.net/free-photo/medium-shot-smiley-woman-work_23-2149304143.jpg", date: "Dec 2024" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/empty-cafe-bar-interior-design-with-artistic-drawing-back-wine-bottles-light-bulbs-hanging-from-ceiling_482257-18253.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/empty-cafe-bar-interior-design-with-artistic-drawing-back-wine-bottles-light-bulbs-hanging-from-ceiling_482257-18253.jpg"
|
||||
logoText="Meades Cafe"
|
||||
columns={[
|
||||
{
|
||||
title: "Visit Us",
|
||||
items: [
|
||||
{
|
||||
label: "22 Grattan Square, Dungarvan",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Social",
|
||||
items: [
|
||||
{
|
||||
label: "Facebook",
|
||||
href: "https://facebook.com/MeadesCafe",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Menu",
|
||||
items: [
|
||||
{
|
||||
label: "Breakfast",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "Bakes",
|
||||
href: "/menu",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={[{ title: "Visit Us", items: [{ label: "22 Grattan Square, Dungarvan", href: "#" }] }, { title: "Social", items: [{ label: "Facebook", href: "https://facebook.com/MeadesCafe" }] }, { title: "Menu", items: [{ label: "Breakfast", href: "/menu" }, { label: "Bakes", href: "/menu" }] }]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user