Merge version_2 into main #2
@@ -2,12 +2,11 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
@@ -22,89 +21,41 @@ export default function LandingPage() {
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="Aether Cafe"
|
||||
/>
|
||||
</div>
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Aether Cafe"
|
||||
/>
|
||||
|
||||
<div id="contact-section" data-section="contact-section">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
text="Visit us at Indushpur Railway Crossing, Ayodhya Road. We are open daily from 11 AM to 9 PM."
|
||||
/>
|
||||
</div>
|
||||
<div className="pt-32 pb-20">
|
||||
<ContactSplit
|
||||
tag="Get In Touch"
|
||||
title="Visit Aether Cafe"
|
||||
description="We are located in the heart of Indushpur. Swing by for fresh bites or reach out with your questions!"
|
||||
background={{ variant: "plain" }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/waiter-serving-coffee-with-smile_23-2148762744.jpg"
|
||||
onSubmit={(email) => console.log("Form submitted", email)}
|
||||
/>
|
||||
<div className="max-w-4xl mx-auto px-6 py-12 text-center">
|
||||
<h3 className="text-2xl font-bold mb-4">Our Details</h3>
|
||||
<p>123 Cafe Street, Indushpur, India</p>
|
||||
<p>Phone: +91 8948212926</p>
|
||||
<p className="font-semibold">Hours: Daily, 10 AM - 10 PM</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="socialProof" data-section="socialProof">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Reach Us Here"
|
||||
description="Find us on social media for updates."
|
||||
names={[
|
||||
"Instagram",
|
||||
"WhatsApp",
|
||||
"Google Maps",
|
||||
"Facebook",
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Links",
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "Gallery",
|
||||
href: "/gallery",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "WhatsApp",
|
||||
href: "https://wa.me/8948212926",
|
||||
},
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "https://instagram.com/aether_cafe_000",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="Aether Cafe"
|
||||
copyrightText="© 2026 Aether Cafe"
|
||||
/>
|
||||
</div>
|
||||
<FooterBase
|
||||
columns={[
|
||||
{ title: "Links", items: [{ label: "Menu", href: "/menu" }, { label: "Gallery", href: "/gallery" }] },
|
||||
{ title: "Contact", items: [{ label: "WhatsApp", href: "https://wa.me/8948212926" }, { label: "Instagram", href: "https://instagram.com/aether_cafe_000" }, { label: "Contact Us", href: "/contact" }] },
|
||||
]}
|
||||
logoText="Aether Cafe"
|
||||
copyrightText="© 2026 Aether Cafe"
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
@@ -3,11 +3,10 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import TeamCardSix from '@/components/sections/team/TeamCardSix';
|
||||
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function GalleryPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
@@ -22,111 +21,45 @@ export default function LandingPage() {
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="Aether Cafe"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Aether Cafe"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team">
|
||||
<TeamCardSix
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Meet Our Chefs"
|
||||
description="The hands behind your favorite street snacks."
|
||||
members={[
|
||||
{
|
||||
id: "c1",
|
||||
name: "Rohan Singh",
|
||||
role: "Head Chef",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-unshaven-young-dark-skinned-male-laughing-out-loud_273609-14042.jpg",
|
||||
},
|
||||
{
|
||||
id: "c2",
|
||||
name: "Priya Sharma",
|
||||
role: "Momo Specialist",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-student-happy-be-back-university_23-2148586556.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="gallery" data-section="gallery">
|
||||
<FeatureCardTwentySeven
|
||||
title="Our Visual Journey"
|
||||
description="A glimpse into the atmosphere, people, and culinary delights at Aether Cafe."
|
||||
gridVariant="bento-grid"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
features={[
|
||||
{ id: "1", title: "Cozy Vibes", description: "Where every corner feels like home.", imageSrc: "http://img.b2bpic.net/free-photo/salad-with-fried-eggplants-tomatoes-olives-chopped-scallion-sesame-seeds_140725-8039.jpg" },
|
||||
{ id: "2", title: "Freshly Prepared", description: "Our kitchen at work.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-asian-dumplings-dish-with-herbs_23-2148694345.jpg" },
|
||||
{ id: "3", title: "Locals Loved", description: "Serving smiles daily.", imageSrc: "http://img.b2bpic.net/free-photo/healthy-chinese-cabbage-salad-plate-black-slate-background_123827-20928.jpg" },
|
||||
{ id: "4", title: "Signature Dishes", description: "Flavors you'll crave.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-beyti-kebab-served-with-ayran-pickles_141793-2020.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metric" data-section="metric">
|
||||
<MetricCardFourteen
|
||||
useInvertedBackground={false}
|
||||
title="Cafe Atmosphere"
|
||||
tag="Vibe"
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "Cozy",
|
||||
description: "Seating Area",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "Warm",
|
||||
description: "Lighting",
|
||||
},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Links",
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "Gallery",
|
||||
href: "/gallery",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "WhatsApp",
|
||||
href: "https://wa.me/8948212926",
|
||||
},
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "https://instagram.com/aether_cafe_000",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="Aether Cafe"
|
||||
copyrightText="© 2026 Aether Cafe"
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{ title: "Links", items: [{ label: "Menu", href: "/menu" }, { label: "Gallery", href: "/gallery" }] },
|
||||
{ title: "Contact", items: [{ label: "WhatsApp", href: "https://wa.me/8948212926" }, { label: "Instagram", href: "https://instagram.com/aether_cafe_000" }] }
|
||||
]}
|
||||
logoText="Aether Cafe"
|
||||
copyrightText="© 2026 Aether Cafe"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -2,12 +2,11 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function MenuPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
@@ -22,117 +21,37 @@ export default function LandingPage() {
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="Aether Cafe"
|
||||
/>
|
||||
</div>
|
||||
<NavbarStyleCentered
|
||||
navItems={[{ name: "Home", id: "/" }, { name: "Menu", id: "/menu" }, { name: "Gallery", id: "/gallery" }, { name: "Contact", id: "/contact" }]}
|
||||
brandName="Aether Cafe"
|
||||
/>
|
||||
|
||||
<div id="menu-grid" data-section="menu-grid">
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Momos (Fry & Steam)",
|
||||
price: "₹50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-asian-dumplings-dish-with-herbs_23-2148694345.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Chowmein",
|
||||
price: "₹60",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/healthy-chinese-cabbage-salad-plate-black-slate-background_123827-20928.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Chili Paneer",
|
||||
price: "₹90",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-beyti-kebab-served-with-ayran-pickles_141793-2020.jpg?_wi=2",
|
||||
},
|
||||
]}
|
||||
title="Our Menu"
|
||||
description="Handcrafted street delights made fresh daily with authentic spices and local ingredients."
|
||||
/>
|
||||
</div>
|
||||
<div className="pt-32 pb-20">
|
||||
<ProductCardThree
|
||||
title="Our Menu"
|
||||
description="Authentic street flavors prepared fresh every day."
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
products={[
|
||||
{ id: "p1", name: "Veg Momos", price: "₹80", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-asian-dumplings-dish-with-herbs_23-2148694345.jpg" },
|
||||
{ id: "p2", name: "Paneer Momos", price: "₹120", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-asian-dumplings-dish-with-herbs_23-2148694345.jpg?_wi=1" },
|
||||
{ id: "p3", name: "Veg Chowmein", price: "₹90", imageSrc: "http://img.b2bpic.net/free-photo/healthy-chinese-cabbage-salad-plate-black-slate-background_123827-20928.jpg?_wi=1" },
|
||||
{ id: "p4", name: "Chili Paneer", price: "₹180", imageSrc: "http://img.b2bpic.net/free-photo/close-up-beyti-kebab-served-with-ayran-pickles_141793-2020.jpg?_wi=1" },
|
||||
{ id: "p5", name: "Spring Rolls", price: "₹100", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-asian-dumplings-dish-with-herbs_23-2148694345.jpg?_wi=2" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metric" data-section="metric">
|
||||
<MetricCardFourteen
|
||||
useInvertedBackground={false}
|
||||
title="Menu Highlights"
|
||||
tag="Popularity"
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "100%",
|
||||
description: "Fresh Ingredients",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "15 min",
|
||||
description: "Avg Serve Time",
|
||||
},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Links",
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "Gallery",
|
||||
href: "/gallery",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "WhatsApp",
|
||||
href: "https://wa.me/8948212926",
|
||||
},
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "https://instagram.com/aether_cafe_000",
|
||||
},
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="Aether Cafe"
|
||||
copyrightText="© 2026 Aether Cafe"
|
||||
/>
|
||||
</div>
|
||||
<FooterBase
|
||||
columns={[
|
||||
{ title: "Links", items: [{ label: "Menu", href: "/menu" }, { label: "Gallery", href: "/gallery" }] },
|
||||
{ title: "Contact", items: [{ label: "WhatsApp", href: "https://wa.me/8948212926" }, { label: "Instagram", href: "https://instagram.com/aether_cafe_000" }] }
|
||||
]}
|
||||
logoText="Aether Cafe"
|
||||
copyrightText="© 2026 Aether Cafe"
|
||||
/>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
138
src/app/page.tsx
138
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: "Gallery",
|
||||
id: "/gallery",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Gallery", id: "/gallery" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="Aether Cafe"
|
||||
/>
|
||||
@@ -52,42 +40,19 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardCarousel
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
background={{ variant: "radial-gradient" }}
|
||||
title="A Taste You Will Remember"
|
||||
description="Delicious street-style food at pocket-friendly prices. From crispy momos to spicy chowmein — your daily cravings solved."
|
||||
buttons={[
|
||||
{
|
||||
text: "Call Now",
|
||||
href: "tel:8948212926",
|
||||
},
|
||||
{
|
||||
text: "Get Directions",
|
||||
href: "https://maps.google.com",
|
||||
},
|
||||
{ text: "Call Now", href: "tel:8948212926" },
|
||||
{ text: "Get Directions", href: "https://maps.google.com" },
|
||||
]}
|
||||
mediaItems={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/salad-with-fried-eggplants-tomatoes-olives-chopped-scallion-sesame-seeds_140725-8039.jpg",
|
||||
imageAlt: "Cafe Vibe",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-asian-dumplings-dish-with-herbs_23-2148694345.jpg?_wi=1",
|
||||
imageAlt: "Momos",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/healthy-chinese-cabbage-salad-plate-black-slate-background_123827-20928.jpg?_wi=1",
|
||||
imageAlt: "Chowmein",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-beyti-kebab-served-with-ayran-pickles_141793-2020.jpg?_wi=1",
|
||||
imageAlt: "Chili Paneer",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-asian-dumplings-dish-with-herbs_23-2148694345.jpg?_wi=2",
|
||||
imageAlt: "Momos again",
|
||||
},
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/salad-with-fried-eggplants-tomatoes-olives-chopped-scallion-sesame-seeds_140725-8039.jpg", imageAlt: "Cafe Vibe" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/high-angle-asian-dumplings-dish-with-herbs_23-2148694345.jpg?_wi=1", imageAlt: "Momos" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/healthy-chinese-cabbage-salad-plate-black-slate-background_123827-20928.jpg?_wi=1", imageAlt: "Chowmein" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-beyti-kebab-served-with-ayran-pickles_141793-2020.jpg?_wi=1", imageAlt: "Chili Paneer" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/high-angle-asian-dumplings-dish-with-herbs_23-2148694345.jpg?_wi=2", imageAlt: "Momos again" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -108,26 +73,11 @@ export default function LandingPage() {
|
||||
rating={5}
|
||||
author="Sarah Johnson"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/handsome-unshaven-young-dark-skinned-male-laughing-out-loud_273609-14042.jpg",
|
||||
alt: "Sarah",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/beautiful-student-happy-be-back-university_23-2148586556.jpg",
|
||||
alt: "Mike",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/content-student-with-studies_23-2147666399.jpg",
|
||||
alt: "Jane",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/happy-dreamy-woman-with-blond-hair-thinking-new-purchase-holding-shopping-bags_1262-14241.jpg",
|
||||
alt: "John",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/handsome-unshaven-young-dark-skinned-male-laughing-out-loud_273609-14042.jpg",
|
||||
alt: "Alex",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/handsome-unshaven-young-dark-skinned-male-laughing-out-loud_273609-14042.jpg", alt: "Sarah" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/beautiful-student-happy-be-back-university_23-2148586556.jpg", alt: "Mike" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/content-student-with-studies_23-2147666399.jpg", alt: "Jane" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/happy-dreamy-woman-with-blond-hair-thinking-new-purchase-holding-shopping-bags_1262-14241.jpg", alt: "John" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/handsome-unshaven-young-dark-skinned-male-laughing-out-loud_273609-14042.jpg", alt: "Alex" },
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="blur-reveal"
|
||||
@@ -140,21 +90,9 @@ export default function LandingPage() {
|
||||
title="Aether Cafe by Numbers"
|
||||
tag="Our Impact"
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "500+",
|
||||
description: "Happy Customers Served",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
value: "20+",
|
||||
description: "Menu Varieties",
|
||||
},
|
||||
{
|
||||
id: "m3",
|
||||
value: "4.8/5",
|
||||
description: "Average Rating",
|
||||
},
|
||||
{ id: "m1", value: "500+", description: "Happy Customers Served" },
|
||||
{ id: "m2", value: "20+", description: "Menu Varieties" },
|
||||
{ id: "m3", value: "4.8/5", description: "Average Rating" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -166,45 +104,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Community Favorites"
|
||||
description="Loved by locals, students, and commuters alike."
|
||||
names={[
|
||||
"Indushpur Daily",
|
||||
"Ayodhya Foodies",
|
||||
"Student Union Hub",
|
||||
"Street Eats Guide",
|
||||
"Local Business News",
|
||||
]}
|
||||
names={["Indushpur Daily", "Ayodhya Foodies", "Student Union Hub", "Street Eats Guide", "Local Business News"]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBase
|
||||
columns={[
|
||||
{
|
||||
title: "Links",
|
||||
items: [
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "Gallery",
|
||||
href: "/gallery",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
{
|
||||
label: "WhatsApp",
|
||||
href: "https://wa.me/8948212926",
|
||||
},
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "https://instagram.com/aether_cafe_000",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Links", items: [{ label: "Menu", href: "/menu" }, { label: "Gallery", href: "/gallery" }] },
|
||||
{ title: "Contact", items: [{ label: "WhatsApp", href: "https://wa.me/8948212926" }, { label: "Instagram", href: "https://instagram.com/aether_cafe_000" }, { label: "Contact Us", href: "/contact" }] },
|
||||
]}
|
||||
logoText="Aether Cafe"
|
||||
copyrightText="© 2026 Aether Cafe"
|
||||
|
||||
Reference in New Issue
Block a user