Merge version_3 into main #3

Merged
bender merged 1 commits from version_3 into main 2026-03-03 18:31:59 +00:00

View File

@@ -44,7 +44,7 @@ export default function HomePage() {
<div id="hero" data-section="hero">
<HeroOverlay
title="Naihati's Favorite Affordable Café"
description="Pasta • Pizza • Waffles • Cozy Vibes — Perfect for friends, couples, and celebrations\n\n📍 Naihati Central Market, Naihati 741379\n🕒 Open 11 AM - 11 PM (Closed Mondays)"
description="Pasta • Pizza • Waffles • Cozy Vibes — Perfect for friends, couples, and celebrations"
tag="Welcome"
imageSrc="http://img.b2bpic.net/free-photo/burning-candle-table_140725-8115.jpg?_wi=1"
imageAlt="Famous d'cafe cozy interior"
@@ -56,6 +56,24 @@ export default function HomePage() {
{ text: "📅 Book a Table", href: "/contact" },
]}
/>
{/* Location & Hours Callout */}
<div className="flex flex-col gap-4 px-6 py-8 md:px-10 md:py-12 max-w-2xl mx-auto bg-card rounded-theme border border-accent/20">
<div className="flex items-start gap-3">
<MapPin className="w-5 h-5 text-primary-cta flex-shrink-0 mt-1" />
<div>
<h3 className="font-semibold text-foreground text-sm md:text-base">📍 Our Location</h3>
<p className="text-foreground/75 text-xs md:text-sm mt-1">Jaga Bhandu More, 19 Baroda Road, Near RZ Jewellers, Naihati, West Bengal 743165</p>
</div>
</div>
<div className="flex items-start gap-3">
<Clock className="w-5 h-5 text-primary-cta flex-shrink-0 mt-1" />
<div>
<h3 className="font-semibold text-foreground text-sm md:text-base"> Opening Hours</h3>
<p className="text-foreground/75 text-xs md:text-sm mt-1">Monday - Sunday: 10:00 AM - 11:00 PM</p>
<p className="text-foreground/75 text-xs md:text-sm">Walk-ins Welcome No Reservation Needed</p>
</div>
</div>
</div>
</div>
{/* Social Proof Section */}
@@ -193,4 +211,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}