Merge version_1 into main #1

Merged
bender merged 4 commits from version_1 into main 2026-04-24 12:00:16 +00:00
4 changed files with 86 additions and 300 deletions

View File

@@ -2,12 +2,12 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TextAbout from '@/components/sections/about/TextAbout';
import FeatureCardMedia from '@/components/sections/feature/FeatureCardMedia';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -25,24 +25,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Menu",
id: "/menu",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Menu", id: "/menu" },
{ name: "Contact", id: "/contact" },
]}
brandName="Baciami"
button={{ text: "Order Now", href: "/menu" }}
/>
</div>
@@ -63,17 +52,9 @@ export default function LandingPage() {
description="Crafted with precision, delivered with care."
features={[
{
id: "f1",
title: "Premium Beans",
description: "Sourced from the finest local estates.",
imageSrc: "http://img.b2bpic.net/free-photo/coffee-beans-bag-table_23-2148180234.jpg",
},
id: "f1", title: "Premium Beans", description: "Sourced from the finest local estates.", tag: "Quality", imageSrc: "http://img.b2bpic.net/free-photo/coffee-beans-bag-table_23-2148180234.jpg"},
{
id: "f2",
title: "Artisanal Roasts",
description: "Small batches for intense flavor.",
imageSrc: "http://img.b2bpic.net/free-photo/coffee-composition-with-cotton-bag_23-2147671450.jpg",
},
id: "f2", title: "Artisanal Roasts", description: "Small batches for intense flavor.", tag: "Craft", imageSrc: "http://img.b2bpic.net/free-photo/coffee-composition-with-cotton-bag_23-2147671450.jpg"},
]}
/>
</div>
@@ -83,38 +64,20 @@ export default function LandingPage() {
columns={[
{
items: [
{
label: "Home",
href: "/",
},
{
label: "Menu",
href: "/menu",
},
{ label: "Home", href: "/" },
{ label: "Menu", href: "/menu" },
],
},
{
items: [
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
{ label: "About", href: "/about" },
{ label: "Contact", href: "/contact" },
],
},
{
items: [
{
label: "Instagram",
href: "#",
},
{
label: "Twitter",
href: "#",
},
{ label: "Instagram", href: "#" },
{ label: "Twitter", href: "#" },
],
},
]}

View File

@@ -8,7 +8,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -26,33 +26,20 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Menu",
id: "/menu",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Menu", id: "/menu" },
{ name: "Contact", id: "/contact" },
]}
brandName="Baciami"
button={{ text: "Order Now", href: "/menu" }}
/>
</div>
<div id="contact-body" data-section="contact-body">
<ContactSplit
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Visit Us"
title="Find Your Coffee Moment"
description="We are located at Jubilee Hills, Hyderabad. Open daily from 8:00 AM to 10:00 PM."
@@ -68,15 +55,11 @@ export default function LandingPage() {
cardAnimation="slide-up"
testimonials={[
{
id: "r1",
name: "Rahul",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-happy-young-man-relaxing-coffee-shop-spending-time-cafe-listening_1258-245399.jpg",
},
id: "r1", name: "Rahul", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-happy-young-man-relaxing-coffee-shop-spending-time-cafe-listening_1258-245399.jpg"},
{
id: "r2",
name: "Sara",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-holding-cup-table_1170-732.jpg",
},
id: "r2", name: "Sara", imageSrc: "http://img.b2bpic.net/free-photo/smiling-woman-holding-cup-table_1170-732.jpg"},
{
id: "r3", name: "Rahul", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-happy-young-man-relaxing-coffee-shop-spending-time-cafe-listening_1258-245399.jpg"}
]}
/>
</div>
@@ -88,12 +71,7 @@ export default function LandingPage() {
title="Visit Us Today"
description="Find our storefront in the heart of Jubilee Hills."
names={[
"Map Direction",
"Parking Available",
"WiFi Enabled",
"Outdoor Seating",
"Pet Friendly",
]}
"Map Direction", "Parking Available", "WiFi Enabled", "Outdoor Seating", "Pet Friendly"]}
/>
</div>
@@ -102,38 +80,20 @@ export default function LandingPage() {
columns={[
{
items: [
{
label: "Home",
href: "/",
},
{
label: "Menu",
href: "/menu",
},
{ label: "Home", href: "/" },
{ label: "Menu", href: "/menu" },
],
},
{
items: [
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
{ label: "About", href: "/about" },
{ label: "Contact", href: "/contact" },
],
},
{
items: [
{
label: "Instagram",
href: "#",
},
{
label: "Twitter",
href: "#",
},
{ label: "Instagram", href: "#" },
{ label: "Twitter", href: "#" },
],
},
]}

View File

@@ -6,7 +6,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
export default function LandingPage() {
export default function MenuPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -24,24 +24,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Menu",
id: "/menu",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Menu", id: "/menu" },
{ name: "Contact", id: "/contact" },
]}
brandName="Baciami"
button={{ text: "Order Now", href: "/menu" }}
/>
</div>
@@ -55,19 +44,11 @@ export default function LandingPage() {
description="Our curated list of signature coffee beverages."
products={[
{
id: "m1",
name: "Espresso",
price: "₹150",
variant: "Classic",
imageSrc: "http://img.b2bpic.net/free-photo/cafe-smooth-shot-nice-drink_1172-478.jpg",
},
id: "m1", name: "Espresso", price: "₹150", variant: "Classic", imageSrc: "http://img.b2bpic.net/free-photo/cafe-smooth-shot-nice-drink_1172-478.jpg"},
{
id: "m2",
name: "Latte",
price: "₹220",
variant: "Smooth",
imageSrc: "http://img.b2bpic.net/free-photo/cup-coffee-latte-wood-table-coffee-shop-cafe_1150-12757.jpg",
},
id: "m2", name: "Latte", price: "₹220", variant: "Smooth", imageSrc: "http://img.b2bpic.net/free-photo/cup-coffee-latte-wood-table-coffee-shop-cafe_1150-12757.jpg"},
{
id: "m3", name: "Cappuccino", price: "₹250", variant: "Frothy", imageSrc: "http://img.b2bpic.net/free-photo/fresh-cappuccino-coffee_1150-12757.jpg"}
]}
/>
</div>
@@ -77,38 +58,20 @@ export default function LandingPage() {
columns={[
{
items: [
{
label: "Home",
href: "/",
},
{
label: "Menu",
href: "/menu",
},
{ label: "Home", href: "/" },
{ label: "Menu", href: "/menu" },
],
},
{
items: [
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
{ label: "About", href: "/about" },
{ label: "Contact", href: "/contact" },
],
},
{
items: [
{
label: "Instagram",
href: "#",
},
{
label: "Twitter",
href: "#",
},
{ label: "Instagram", href: "#" },
{ label: "Twitter", href: "#" },
],
},
]}

View File

@@ -28,24 +28,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Menu",
id: "/menu",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Menu", id: "/menu" },
{ name: "Contact", id: "/contact" },
]}
brandName="Baciami"
button={{ text: "Order Now", href: "/menu" }}
/>
</div>
@@ -54,14 +43,8 @@ export default function LandingPage() {
logoText="Baciami"
description="Where Every Cup Feels Like a Moment. Experience authentic specialty coffee in the heart of Hyderabad."
buttons={[
{
text: "Visit Us",
href: "/contact",
},
{
text: "View Menu",
href: "/menu",
},
{ text: "Visit Us", href: "/contact" },
{ text: "View Menu", href: "/menu" },
]}
imageSrc="http://img.b2bpic.net/free-photo/trendy-coffee-shop-city_53876-30213.jpg"
/>
@@ -84,59 +67,23 @@ export default function LandingPage() {
useInvertedBackground={false}
products={[
{
id: "1",
brand: "Coffee",
name: "Signature Flat White",
price: "₹280",
rating: 5,
reviewCount: "120",
imageSrc: "http://img.b2bpic.net/free-photo/double-espresso-coffee-mug-with-cinnamon-sticks-coffee-beans-wooden-board_181624-57338.jpg",
},
id: "1", brand: "Coffee", name: "Signature Flat White", price: "₹280", rating: 5,
reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/double-espresso-coffee-mug-with-cinnamon-sticks-coffee-beans-wooden-board_181624-57338.jpg"},
{
id: "2",
brand: "Cold Brew",
name: "Nitro Cold Brew",
price: "₹320",
rating: 5,
reviewCount: "85",
imageSrc: "http://img.b2bpic.net/free-photo/milky-shake-with-chocolate-syrup-cinnamon_114579-4417.jpg",
},
id: "2", brand: "Cold Brew", name: "Nitro Cold Brew", price: "₹320", rating: 5,
reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/milky-shake-with-chocolate-syrup-cinnamon_114579-4417.jpg"},
{
id: "3",
brand: "Pastry",
name: "Almond Croissant",
price: "₹220",
rating: 4,
reviewCount: "200",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-fresh-french-croissant-with-decorative-leaves-grey-wooden-board_114579-59280.jpg",
},
id: "3", brand: "Pastry", name: "Almond Croissant", price: "₹220", rating: 4,
reviewCount: "200", imageSrc: "http://img.b2bpic.net/free-photo/top-view-fresh-french-croissant-with-decorative-leaves-grey-wooden-board_114579-59280.jpg"},
{
id: "4",
brand: "Dessert",
name: "Chocolate Truffle Cake",
price: "₹250",
rating: 5,
reviewCount: "150",
imageSrc: "http://img.b2bpic.net/free-photo/woman-selecting-packed-food-food-counter_107420-63658.jpg",
},
id: "4", brand: "Dessert", name: "Chocolate Truffle Cake", price: "₹250", rating: 5,
reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/woman-selecting-packed-food-food-counter_107420-63658.jpg"},
{
id: "5",
brand: "Beans",
name: "Speciality Roast Blend",
price: "₹800",
rating: 5,
reviewCount: "90",
imageSrc: "http://img.b2bpic.net/free-photo/coffee-composition-with-bag-moka-pot_23-2147671453.jpg",
},
id: "5", brand: "Beans", name: "Speciality Roast Blend", price: "₹800", rating: 5,
reviewCount: "90", imageSrc: "http://img.b2bpic.net/free-photo/coffee-composition-with-bag-moka-pot_23-2147671453.jpg"},
{
id: "6",
brand: "Alternative",
name: "Iced Matcha Latte",
price: "₹300",
rating: 4,
reviewCount: "110",
imageSrc: "http://img.b2bpic.net/free-photo/iced-coffee-iced-green-tea_1388-601.jpg",
},
id: "6", brand: "Alternative", name: "Iced Matcha Latte", price: "₹300", rating: 4,
reviewCount: "110", imageSrc: "http://img.b2bpic.net/free-photo/iced-coffee-iced-green-tea_1388-601.jpg"},
]}
title="Signature Selections"
description="Hand-crafted blends and gourmet treats designed to delight your senses."
@@ -145,49 +92,25 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials">
<TestimonialCardThirteen
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={true}
testimonials={[
{
id: "1",
name: "Ananya Rao",
handle: "@ananyarao",
testimonial: "The best cold brew I've had in Hyderabad. A perfect workspace.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5349.jpg",
},
id: "1", name: "Ananya Rao", handle: "@ananyarao", testimonial: "The best cold brew I've had in Hyderabad. A perfect workspace.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5349.jpg"},
{
id: "2",
name: "Vikram Singh",
handle: "@vikram_s",
testimonial: "Peaceful atmosphere and the baristas really know their craft.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/man-using-laptop-while-having-coffee_1170-718.jpg",
},
id: "2", name: "Vikram Singh", handle: "@vikram_s", testimonial: "Peaceful atmosphere and the baristas really know their craft.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/man-using-laptop-while-having-coffee_1170-718.jpg"},
{
id: "3",
name: "Neha Gupta",
handle: "@nehagupta",
testimonial: "I come here to work daily. The vibes are truly unmatched.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-holding-cup-coffee-coffee-shop_1170-2061.jpg",
},
id: "3", name: "Neha Gupta", handle: "@nehagupta", testimonial: "I come here to work daily. The vibes are truly unmatched.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-holding-cup-coffee-coffee-shop_1170-2061.jpg"},
{
id: "4",
name: "Karthik Reddy",
handle: "@reddyk",
testimonial: "Great specialty coffee! The croissant is always fresh and flaky.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/small-business-owner-drinking-coffee_23-2149458139.jpg",
},
id: "4", name: "Karthik Reddy", handle: "@reddyk", testimonial: "Great specialty coffee! The croissant is always fresh and flaky.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/small-business-owner-drinking-coffee_23-2149458139.jpg"},
{
id: "5",
name: "Priya Sharma",
handle: "@priyasharma",
testimonial: "A true sanctuary in the middle of the busy city life.",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/adorable-charming-lady-with-long-hair-wearing-trendy-blouse-sitting-cafeteria-with-great-smile_291650-620.jpg",
},
id: "5", name: "Priya Sharma", handle: "@priyasharma", testimonial: "A true sanctuary in the middle of the busy city life.", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/adorable-charming-lady-with-long-hair-wearing-trendy-blouse-sitting-cafeteria-with-great-smile_291650-620.jpg"},
]}
showRating={true}
title="Community Voices"
@@ -202,12 +125,7 @@ export default function LandingPage() {
title="Trusted by Coffee Enthusiasts"
description="Join thousands of daily visitors who choose Baciami for their premium brew."
names={[
"Jubilee Hills Gazette",
"Hyderabad Coffee Daily",
"The Urban Sip",
"City Lifestyle Mag",
"Modern Cafe Guide",
]}
"Jubilee Hills Gazette", "Hyderabad Coffee Daily", "The Urban Sip", "City Lifestyle Mag", "Modern Cafe Guide"]}
/>
</div>
@@ -216,38 +134,20 @@ export default function LandingPage() {
columns={[
{
items: [
{
label: "Home",
href: "/",
},
{
label: "Menu",
href: "/menu",
},
{ label: "Home", href: "/" },
{ label: "Menu", href: "/menu" },
],
},
{
items: [
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
{ label: "About", href: "/about" },
{ label: "Contact", href: "/contact" },
],
},
{
items: [
{
label: "Instagram",
href: "#",
},
{
label: "Twitter",
href: "#",
},
{ label: "Instagram", href: "#" },
{ label: "Twitter", href: "#" },
],
},
]}