Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ca2eee0fe7 | |||
| 2fdcc748f1 |
138
src/app/page.tsx
138
src/app/page.tsx
@@ -8,7 +8,7 @@ import HeroCentered from '@/components/sections/hero/HeroCentered';
|
|||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||||
import SplitAbout from '@/components/sections/about/SplitAbout';
|
import SplitAbout from '@/components/sections/about/SplitAbout';
|
||||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -29,17 +29,11 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "home"},
|
||||||
id: "home",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Menu",
|
name: "Menu", id: "menu"},
|
||||||
id: "menu",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Reserve",
|
name: "Reserve", id: "reserve"},
|
||||||
id: "reserve",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Cherry Tree Cafe"
|
brandName="Cherry Tree Cafe"
|
||||||
/>
|
/>
|
||||||
@@ -48,65 +42,40 @@ export default function LandingPage() {
|
|||||||
<div id="home" data-section="home">
|
<div id="home" data-section="home">
|
||||||
<HeroCentered
|
<HeroCentered
|
||||||
background={{
|
background={{
|
||||||
variant: "sparkles-gradient",
|
variant: "sparkles-gradient"}}
|
||||||
}}
|
|
||||||
title="Lucknow’s Favourite Cozy Café Experience"
|
title="Lucknow’s Favourite Cozy Café Experience"
|
||||||
description="Delicious food, warm vibes & unforgettable moments in Hazratganj."
|
description="Delicious food, warm vibes & unforgettable moments in Hazratganj."
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/business-woman-working-laptop-cafe_1303-29705.jpg",
|
src: "http://img.b2bpic.net/free-photo/business-woman-working-laptop-cafe_1303-29705.jpg", alt: "Customer 1"},
|
||||||
alt: "Customer 1",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/girl-with-cheesecake_1303-3946.jpg",
|
src: "http://img.b2bpic.net/free-photo/girl-with-cheesecake_1303-3946.jpg", alt: "Customer 2"},
|
||||||
alt: "Customer 2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/crazy-man-funny-expression_1194-3208.jpg",
|
src: "http://img.b2bpic.net/free-photo/crazy-man-funny-expression_1194-3208.jpg", alt: "Customer 3"},
|
||||||
alt: "Customer 3",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/business-woman-having-lunch-cafe_1303-23879.jpg",
|
src: "http://img.b2bpic.net/free-photo/business-woman-having-lunch-cafe_1303-23879.jpg", alt: "Customer 4"},
|
||||||
alt: "Customer 4",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/two-cups-coffee-white-table_53876-138111.jpg",
|
src: "http://img.b2bpic.net/free-photo/two-cups-coffee-white-table_53876-138111.jpg", alt: "Customer 5"},
|
||||||
alt: "Customer 5",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
avatarText="Join 8,000+ satisfied visitors"
|
avatarText="Join 8,000+ satisfied visitors"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Reserve a Table",
|
text: "Reserve a Table", href: "#reserve"},
|
||||||
href: "#reserve",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Call Now",
|
text: "Call Now", href: "tel:+919876543210"},
|
||||||
href: "tel:+919876543210",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Premium Beans"},
|
||||||
text: "Premium Beans",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Artisanal Pastries"},
|
||||||
text: "Artisanal Pastries",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Heart of Lucknow"},
|
||||||
text: "Heart of Lucknow",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Cozy Atmosphere"},
|
||||||
text: "Cozy Atmosphere",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Open Daily"},
|
||||||
text: "Open Daily",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -119,29 +88,13 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "p1",
|
id: "p1", name: "Spicy Mexican Pasta", price: "₹349", imageSrc: "http://img.b2bpic.net/free-photo/penne-pasta-plate-with-tomatoc-sauce_176474-6938.jpg"},
|
||||||
name: "Spicy Mexican Pasta",
|
|
||||||
price: "₹349",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/penne-pasta-plate-with-tomatoc-sauce_176474-6938.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p2",
|
id: "p2", name: "Olympus Pizza", price: "₹499", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fluffy-pizza-with-mushrooms_23-2148574234.jpg"},
|
||||||
name: "Olympus Pizza",
|
|
||||||
price: "₹499",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-fluffy-pizza-with-mushrooms_23-2148574234.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p3",
|
id: "p3", name: "Blueberry Cheesecake", price: "₹299", imageSrc: "http://img.b2bpic.net/free-photo/happy-family-with-cookies-tray-christmas_1187-695.jpg"},
|
||||||
name: "Blueberry Cheesecake",
|
|
||||||
price: "₹299",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-family-with-cookies-tray-christmas_1187-695.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p4",
|
id: "p4", name: "Iced Coffee", price: "₹199", imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-iced-coffee-beverage_23-2149648694.jpg"},
|
||||||
name: "Iced Coffee",
|
|
||||||
price: "₹199",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-iced-coffee-beverage_23-2149648694.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Signature Dishes"
|
title="Signature Dishes"
|
||||||
description="Hand-crafted delicacies prepared fresh daily."
|
description="Hand-crafted delicacies prepared fresh daily."
|
||||||
@@ -156,17 +109,11 @@ export default function LandingPage() {
|
|||||||
description="From quiet work afternoons to romantic evening dates, The Cherry Tree Cafe offers an aesthetic, cozy haven in the heart of Hazratganj."
|
description="From quiet work afternoons to romantic evening dates, The Cherry Tree Cafe offers an aesthetic, cozy haven in the heart of Hazratganj."
|
||||||
bulletPoints={[
|
bulletPoints={[
|
||||||
{
|
{
|
||||||
title: "Warm Ambience",
|
title: "Warm Ambience", description: "Designed for comfort and conversation."},
|
||||||
description: "Designed for comfort and conversation.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Artisanal Coffee",
|
title: "Artisanal Coffee", description: "Expertly roasted beans for the perfect cup."},
|
||||||
description: "Expertly roasted beans for the perfect cup.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Central Location",
|
title: "Central Location", description: "Right in the heart of Hazratganj."},
|
||||||
description: "Right in the heart of Hazratganj.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/girl-with-phone-night_1303-5738.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/girl-with-phone-night_1303-5738.jpg"
|
||||||
mediaAnimation="blur-reveal"
|
mediaAnimation="blur-reveal"
|
||||||
@@ -174,35 +121,19 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardFifteen
|
<TestimonialCardTen
|
||||||
|
title="What Our Guests Say"
|
||||||
|
description="Hear from the community that makes our café special."
|
||||||
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonial="An absolutely amazing vibe! The coffee is great and the staff are incredibly welcoming. Definitely my new go-to spot in Lucknow."
|
testimonials={[
|
||||||
rating={5}
|
|
||||||
author="Ananya Sharma"
|
|
||||||
avatars={[
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/business-woman-working-laptop-cafe_1303-29705.jpg",
|
id: "t1", title: "Incredible Vibe", quote: "An absolutely amazing vibe! The coffee is great and the staff are incredibly welcoming. Definitely my new go-to spot in Lucknow.", name: "Ananya Sharma", role: "Regular Visitor"},
|
||||||
alt: "Ananya",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/girl-with-cheesecake_1303-3946.jpg",
|
id: "t2", title: "Perfect Workspace", quote: "The best place to work with a laptop. Quiet, aesthetic, and the iced coffee is divine.", name: "Vikram Singh", role: "Digital Nomad"},
|
||||||
alt: "Vikram",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/crazy-man-funny-expression_1194-3208.jpg",
|
id: "t3", title: "Romantic Setting", quote: "Celebrated our anniversary here. The ambiance is so dreamy and intimate.", name: "Sneha Kapoor", role: "Happy Guest"},
|
||||||
alt: "Sneha",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/business-woman-having-lunch-cafe_1303-23879.jpg",
|
|
||||||
alt: "Rohan",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/group-friends-having-coffee_23-2148395337.jpg",
|
|
||||||
alt: "Guest",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
ratingAnimation="slide-up"
|
|
||||||
avatarsAnimation="blur-reveal"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -210,8 +141,7 @@ export default function LandingPage() {
|
|||||||
<ContactSplit
|
<ContactSplit
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "sparkles-gradient",
|
variant: "sparkles-gradient"}}
|
||||||
}}
|
|
||||||
tag="Booking"
|
tag="Booking"
|
||||||
title="Secure Your Table"
|
title="Secure Your Table"
|
||||||
description="Join us today. Book your spot to avoid the weekend rush."
|
description="Join us today. Book your spot to avoid the weekend rush."
|
||||||
@@ -231,4 +161,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user