Switch to version 1: modified src/app/page.tsx
This commit is contained in:
144
src/app/page.tsx
144
src/app/page.tsx
@@ -29,10 +29,22 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Features",
|
||||
id: "features",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
]}
|
||||
brandName="Life In Alamo City"
|
||||
/>
|
||||
@@ -42,10 +54,15 @@ export default function LandingPage() {
|
||||
<HeroLogo
|
||||
logoText="Life In Alamo City"
|
||||
description="Discover authentic local dining experiences in the heart of Alamo City. Your table awaits."
|
||||
buttonAnimation="slide-up"
|
||||
buttons={[
|
||||
{ text: "Explore Menu", href: "#features" },
|
||||
{ text: "Contact Us", href: "#contact" },
|
||||
{
|
||||
text: "Explore Menu",
|
||||
href: "#features",
|
||||
},
|
||||
{
|
||||
text: "Contact Us",
|
||||
href: "#contact",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-dining-tables-without-food_23-2150157811.jpg?_wi=1"
|
||||
imageAlt="cozy restaurant interior warm lighting"
|
||||
@@ -55,10 +72,16 @@ export default function LandingPage() {
|
||||
<div id="about" data-section="about">
|
||||
<InlineImageSplitTextAbout
|
||||
useInvertedBackground={false}
|
||||
buttonAnimation="slide-up"
|
||||
heading={[
|
||||
{ type: "text", content: "Experience the True Flavor of Alamo City." },
|
||||
{ type: "image", src: "http://img.b2bpic.net/free-photo/beautiful-woman-shopping-organic-products_23-2148672820.jpg", alt: "restaurant kitchen fresh food" },
|
||||
{
|
||||
type: "text",
|
||||
content: "Experience the True Flavor of Alamo City.",
|
||||
},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/beautiful-woman-shopping-organic-products_23-2148672820.jpg",
|
||||
alt: "restaurant kitchen fresh food",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -66,14 +89,39 @@ export default function LandingPage() {
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardTwelve
|
||||
animationType="slide-up"
|
||||
tagAnimation="slide-up"
|
||||
buttonAnimation="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{ id: "1", label: "Culinary", title: "Artisanal Cuisine", items: ["Fresh local produce", "Signature cooking techniques", "Seasonally inspired menu"] },
|
||||
{ id: "2", label: "Service", title: "Exceptional Hospitality", items: ["Warm attentive staff", "Expert wine pairing", "Custom event hosting"] },
|
||||
{ id: "3", label: "Ambiance", title: "Authentic Setting", items: ["Modern rustic decor", "Intimate dining spaces", "Curated background music"] },
|
||||
{
|
||||
id: "1",
|
||||
label: "Culinary",
|
||||
title: "Artisanal Cuisine",
|
||||
items: [
|
||||
"Fresh local produce",
|
||||
"Signature cooking techniques",
|
||||
"Seasonally inspired menu",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
label: "Service",
|
||||
title: "Exceptional Hospitality",
|
||||
items: [
|
||||
"Warm attentive staff",
|
||||
"Expert wine pairing",
|
||||
"Custom event hosting",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
label: "Ambiance",
|
||||
title: "Authentic Setting",
|
||||
items: [
|
||||
"Modern rustic decor",
|
||||
"Intimate dining spaces",
|
||||
"Curated background music",
|
||||
],
|
||||
},
|
||||
]}
|
||||
title="Our Signature Experiences"
|
||||
description="Handcrafted dishes, locally sourced ingredients, and an atmosphere like no other."
|
||||
@@ -82,14 +130,64 @@ export default function LandingPage() {
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFive
|
||||
tagAnimation="slide-up"
|
||||
buttonAnimation="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "1", name: "Alex R.", date: "Jan 2025", title: "Great find!", quote: "The most authentic flavors in the city. Truly an unforgettable dinner.", tag: "Dinner", avatarSrc: "http://img.b2bpic.net/free-photo/smiling-lady-shirt-sitting-bar-counter-with-soda-water-hand-burger-near-happily-looking-camera-while-spending-time-cafe_574295-329.jpg" },
|
||||
{ id: "2", name: "Sarah M.", date: "Dec 2024", title: "Wonderful", quote: "A perfect setting for our anniversary celebration. Service was top-notch.", tag: "Celebration", avatarSrc: "http://img.b2bpic.net/free-photo/black-bearded-male-redhead-female-drink-coffee-cafe-street_613910-1414.jpg" },
|
||||
{ id: "3", name: "David K.", date: "Dec 2024", title: "Loved it", quote: "The quality of the ingredients really shines through. Highly recommended.", tag: "Casual", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-stylish-smiling-beautiful-woman-retro-vintage-50s-cafe-drinking-milk-shake-cocktail-pink-tshirt-silver-jacket-wearing-pink-sunglasses-having-fun-cheerful-mood_285396-10714.jpg" },
|
||||
{
|
||||
id: "1",
|
||||
name: "Alex R.",
|
||||
date: "Jan 2025",
|
||||
title: "Great find!",
|
||||
quote: "The most authentic flavors in the city. Truly an unforgettable dinner.",
|
||||
tag: "Dinner",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/smiling-lady-shirt-sitting-bar-counter-with-soda-water-hand-burger-near-happily-looking-camera-while-spending-time-cafe_574295-329.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-dining-tables-without-food_23-2150157811.jpg?_wi=2",
|
||||
imageAlt: "cozy restaurant interior warm lighting",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Sarah M.",
|
||||
date: "Dec 2024",
|
||||
title: "Wonderful",
|
||||
quote: "A perfect setting for our anniversary celebration. Service was top-notch.",
|
||||
tag: "Celebration",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/black-bearded-male-redhead-female-drink-coffee-cafe-street_613910-1414.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-shopping-organic-products_23-2148672820.jpg",
|
||||
imageAlt: "restaurant kitchen fresh food",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "David K.",
|
||||
date: "Dec 2024",
|
||||
title: "Loved it",
|
||||
quote: "The quality of the ingredients really shines through. Highly recommended.",
|
||||
tag: "Casual",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-stylish-smiling-beautiful-woman-retro-vintage-50s-cafe-drinking-milk-shake-cocktail-pink-tshirt-silver-jacket-wearing-pink-sunglasses-having-fun-cheerful-mood_285396-10714.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/pancake-breakfast_74190-750.jpg",
|
||||
imageAlt: "fresh gourmet plate serving",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Maria L.",
|
||||
date: "Nov 2024",
|
||||
title: "Amazing",
|
||||
quote: "Creative dishes and a very warm atmosphere. We will be back again.",
|
||||
tag: "Dinner",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/smiling-waiter-holding-digital-tablet-while-taking-order-from-couple-bar_637285-2427.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-lady-shirt-sitting-bar-counter-with-soda-water-hand-burger-near-happily-looking-camera-while-spending-time-cafe_574295-329.jpg",
|
||||
imageAlt: "happy customer dining restaurant",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "John W.",
|
||||
date: "Oct 2024",
|
||||
title: "Best spot",
|
||||
quote: "Consistently excellent. This has become our go-to restaurant.",
|
||||
tag: "Brunch",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/adolescent-confidential-therapy-session-address-anxiety-low-self-esteem_482257-105928.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-bearded-male-redhead-female-drink-coffee-cafe-street_613910-1414.jpg",
|
||||
imageAlt: "relaxed couple restaurant booth",
|
||||
},
|
||||
]}
|
||||
title="Stories from Alamo City"
|
||||
description="What our guests are saying about their dining experience."
|
||||
@@ -98,10 +196,10 @@ export default function LandingPage() {
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
tagAnimation="slide-up"
|
||||
onSubmit={(email) => alert(`Thank you! Subscription received for: ${email}`)}
|
||||
useInvertedBackground={true}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
title="Visit Us Today"
|
||||
description="Join us for a memorable meal in Alamo City. Reserve your table or contact us for inquiries."
|
||||
tag="Get in Touch"
|
||||
|
||||
Reference in New Issue
Block a user