Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 10415af2bc | |||
| 3ae9824b6f | |||
| 2329fcbb11 | |||
| 0dfb36cb79 | |||
| 4397beaa82 |
179
src/app/page.tsx
179
src/app/page.tsx
@@ -33,21 +33,13 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "#hero",
|
||||
},
|
||||
name: "Home", id: "#hero"},
|
||||
{
|
||||
name: "About",
|
||||
id: "#about",
|
||||
},
|
||||
name: "About", id: "#about"},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "#menu",
|
||||
},
|
||||
name: "Menu", id: "#menu"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "#contact",
|
||||
},
|
||||
name: "Contact", id: "#contact"},
|
||||
]}
|
||||
brandName="Oceanic Tide"
|
||||
/>
|
||||
@@ -56,12 +48,16 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardScroll
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
title="Where the Ocean Meets Your Plate"
|
||||
description="Indulge in our sustainably sourced, daily-caught seafood delicacies prepared by expert chefs in a breathtaking coastal atmosphere."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/desk-with-snaks-beer_140725-1902.jpg"
|
||||
imageAlt="Fresh seafood dining experience"
|
||||
buttons={[
|
||||
{
|
||||
text: "Reserve Your Table", href: "#contact"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -73,17 +69,11 @@ export default function LandingPage() {
|
||||
description="At Oceanic Tide, we believe in bringing the freshness of the deep blue directly to your table, using time-honored traditions and the finest organic ingredients."
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Sustainably Caught",
|
||||
description: "We partner with local fisheries that respect marine life.",
|
||||
},
|
||||
title: "Sustainably Caught", description: "We partner with local fisheries that respect marine life."},
|
||||
{
|
||||
title: "Farm to Table",
|
||||
description: "Every side and garnish comes from local organic farms.",
|
||||
},
|
||||
title: "Farm to Table", description: "Every side and garnish comes from local organic farms."},
|
||||
{
|
||||
title: "Artisanal Preparation",
|
||||
description: "Our chefs specialize in modern techniques with rustic roots.",
|
||||
},
|
||||
title: "Artisanal Preparation", description: "Our chefs specialize in modern techniques with rustic roots."},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-fresh-fish-wooden-bottom-with-wine_23-2148290517.jpg"
|
||||
imageAlt="Chef preparing local seafood"
|
||||
@@ -98,19 +88,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Wood-Fired Grilling",
|
||||
description: "Smoky, aromatic flavor profile.",
|
||||
icon: Flame,
|
||||
title: "Wood-Fired Grilling", description: "Smoky, aromatic flavor profile.", icon: Flame,
|
||||
},
|
||||
{
|
||||
title: "Cold-Cured Sourcing",
|
||||
description: "Pure, preserved ocean essence.",
|
||||
icon: Droplets,
|
||||
title: "Cold-Cured Sourcing", description: "Pure, preserved ocean essence.", icon: Droplets,
|
||||
},
|
||||
{
|
||||
title: "Herb-Infused Steaming",
|
||||
description: "Delicate, light, and healthy.",
|
||||
icon: Waves,
|
||||
title: "Herb-Infused Steaming", description: "Delicate, light, and healthy.", icon: Waves,
|
||||
},
|
||||
]}
|
||||
title="Freshness Guaranteed"
|
||||
@@ -126,46 +110,22 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Pan-Seared Scallops",
|
||||
price: "$38.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tuna-sashismi_74190-718.jpg",
|
||||
imageAlt: "Pan-seared scallops with herbs",
|
||||
id: "p1", name: "Pan-Seared Scallops", price: "$38.00", imageSrc: "http://img.b2bpic.net/free-photo/tuna-sashismi_74190-718.jpg", imageAlt: "Pan-seared scallops with herbs", priceButtonProps: { text: "Order Now" }
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Cedar-Plank Salmon",
|
||||
price: "$32.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tuna-roll-with-avocado-salad_1203-9609.jpg",
|
||||
imageAlt: "Salmon on cedar plank",
|
||||
id: "p2", name: "Cedar-Plank Salmon", price: "$32.00", imageSrc: "http://img.b2bpic.net/free-photo/tuna-roll-with-avocado-salad_1203-9609.jpg", imageAlt: "Salmon on cedar plank", priceButtonProps: { text: "Order Now" }
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Lobster Bisque",
|
||||
price: "$18.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/salad-with-herbs-topped-with-srimp_141793-838.jpg",
|
||||
imageAlt: "Creamy lobster bisque",
|
||||
id: "p3", name: "Lobster Bisque", price: "$18.00", imageSrc: "http://img.b2bpic.net/free-photo/salad-with-herbs-topped-with-srimp_141793-838.jpg", imageAlt: "Creamy lobster bisque", priceButtonProps: { text: "Order Now" }
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Oyster Trio",
|
||||
price: "$24.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/seafood-crab-salad-with-fresh-parmesan-crackers-greenery-inside-white-plate_114579-1799.jpg",
|
||||
imageAlt: "Assorted fresh oysters",
|
||||
id: "p4", name: "Oyster Trio", price: "$24.00", imageSrc: "http://img.b2bpic.net/free-photo/seafood-crab-salad-with-fresh-parmesan-crackers-greenery-inside-white-plate_114579-1799.jpg", imageAlt: "Assorted fresh oysters", priceButtonProps: { text: "Order Now" }
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Herb-Crusted Cod",
|
||||
price: "$29.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-dish-with-quinoa-meat_181624-28743.jpg",
|
||||
imageAlt: "Herb crusted cod fillet",
|
||||
id: "p5", name: "Herb-Crusted Cod", price: "$29.00", imageSrc: "http://img.b2bpic.net/free-photo/delicious-dish-with-quinoa-meat_181624-28743.jpg", imageAlt: "Herb crusted cod fillet", priceButtonProps: { text: "Order Now" }
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Seafood Linguine",
|
||||
price: "$35.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fish-fillet-salad-with-white-sauce-herbs-black-plate_114579-3379.jpg",
|
||||
imageAlt: "Linguine with shellfish",
|
||||
id: "p6", name: "Seafood Linguine", price: "$35.00", imageSrc: "http://img.b2bpic.net/free-photo/fish-fillet-salad-with-white-sauce-herbs-black-plate_114579-3379.jpg", imageAlt: "Linguine with shellfish", priceButtonProps: { text: "Order Now" }
|
||||
},
|
||||
]}
|
||||
title="Our Signature Creations"
|
||||
@@ -180,31 +140,16 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "20+",
|
||||
title: "Years Experience",
|
||||
items: [
|
||||
"Serving coastal flavors",
|
||||
"Mastering culinary arts",
|
||||
],
|
||||
id: "m1", value: "20+", title: "Years Experience", items: [
|
||||
"Serving coastal flavors", "Mastering culinary arts"],
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "15k",
|
||||
title: "Happy Guests",
|
||||
items: [
|
||||
"Loyal repeat customers",
|
||||
"Five star reviews",
|
||||
],
|
||||
id: "m2", value: "15k", title: "Happy Guests", items: [
|
||||
"Loyal repeat customers", "Five star reviews"],
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "50+",
|
||||
title: "Local Partners",
|
||||
items: [
|
||||
"Sustainable local fishing",
|
||||
"Organic farmers network",
|
||||
],
|
||||
id: "m3", value: "50+", title: "Local Partners", items: [
|
||||
"Sustainable local fishing", "Organic farmers network"],
|
||||
},
|
||||
]}
|
||||
title="A Tradition of Excellence"
|
||||
@@ -219,40 +164,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Alice M.",
|
||||
role: "Food Critic",
|
||||
testimonial: "The best seafood experience in the city. Truly fresh.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-with-long-blonde-hair-holding-delicious-chocolate-muffin-hand_23-2147974685.jpg",
|
||||
},
|
||||
id: "t1", name: "Alice M.", role: "Food Critic", testimonial: "The best seafood experience in the city. Truly fresh.", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-young-woman-with-long-blonde-hair-holding-delicious-chocolate-muffin-hand_23-2147974685.jpg"},
|
||||
{
|
||||
id: "t2",
|
||||
name: "James R.",
|
||||
role: "Local Regular",
|
||||
testimonial: "Fresh, sustainable, and absolutely delicious every visit.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-happy-rich-stylish-man-dressed-modern-elegant-clothes-holds-cup-coffee-outdoor-restaurant_613910-3978.jpg",
|
||||
},
|
||||
id: "t2", name: "James R.", role: "Local Regular", testimonial: "Fresh, sustainable, and absolutely delicious every visit.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-happy-rich-stylish-man-dressed-modern-elegant-clothes-holds-cup-coffee-outdoor-restaurant_613910-3978.jpg"},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Elena K.",
|
||||
role: "Tourism Blogger",
|
||||
testimonial: "An incredible atmosphere with world-class ingredients.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-having-fun-night_23-2149236902.jpg",
|
||||
},
|
||||
id: "t3", name: "Elena K.", role: "Tourism Blogger", testimonial: "An incredible atmosphere with world-class ingredients.", imageSrc: "http://img.b2bpic.net/free-photo/couple-having-fun-night_23-2149236902.jpg"},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Mark D.",
|
||||
role: "Fine Diner",
|
||||
testimonial: "I never knew salmon could taste this refined.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confused-young-male-gardener-wearing-gardening-hat-isolated-green-wall_141793-82424.jpg",
|
||||
},
|
||||
id: "t4", name: "Mark D.", role: "Fine Diner", testimonial: "I never knew salmon could taste this refined.", imageSrc: "http://img.b2bpic.net/free-photo/confused-young-male-gardener-wearing-gardening-hat-isolated-green-wall_141793-82424.jpg"},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Sarah P.",
|
||||
role: "Local Gourmet",
|
||||
testimonial: "Exquisite textures and perfect wine pairings.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-photo-beautiful-lady-sitting-restaurant-smiling-camera_114579-92383.jpg",
|
||||
},
|
||||
id: "t5", name: "Sarah P.", role: "Local Gourmet", testimonial: "Exquisite textures and perfect wine pairings.", imageSrc: "http://img.b2bpic.net/free-photo/vertical-photo-beautiful-lady-sitting-restaurant-smiling-camera_114579-92383.jpg"},
|
||||
]}
|
||||
title="Voices of the Sea"
|
||||
description="What our patrons say about us."
|
||||
@@ -265,25 +185,13 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Do you offer reservations?",
|
||||
content: "Yes, we highly recommend booking online.",
|
||||
},
|
||||
id: "f1", title: "Do you offer reservations?", content: "Yes, we highly recommend booking online."},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Are your ingredients fresh?",
|
||||
content: "Daily deliveries ensure the highest quality standards.",
|
||||
},
|
||||
id: "f2", title: "Are your ingredients fresh?", content: "Daily deliveries ensure the highest quality standards."},
|
||||
{
|
||||
id: "f3",
|
||||
title: "Is there parking available?",
|
||||
content: "Valet service is provided for our dinner guests.",
|
||||
},
|
||||
id: "f3", title: "Is there parking available?", content: "Valet service is provided for our dinner guests."},
|
||||
{
|
||||
id: "f4",
|
||||
title: "Dietary requirements?",
|
||||
content: "We offer gluten-free and vegetarian options.",
|
||||
},
|
||||
id: "f4", title: "Dietary requirements?", content: "We offer gluten-free and vegetarian options."},
|
||||
]}
|
||||
title="Common Questions"
|
||||
description="Everything you need to know about our dining experience."
|
||||
@@ -295,8 +203,7 @@ export default function LandingPage() {
|
||||
<ContactSplit
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
tag="Visit Us"
|
||||
title="Join Our Mailing List"
|
||||
description="Receive monthly specials and exclusive invitations to our events."
|
||||
@@ -310,16 +217,12 @@ export default function LandingPage() {
|
||||
<FooterLogoReveal
|
||||
logoText="Oceanic Tide"
|
||||
leftLink={{
|
||||
text: "Privacy Policy",
|
||||
href: "#",
|
||||
}}
|
||||
text: "Privacy Policy", href: "#"}}
|
||||
rightLink={{
|
||||
text: "Terms of Service",
|
||||
href: "#",
|
||||
}}
|
||||
text: "Terms of Service", href: "#"}}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user