Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 71fa24868a | |||
| 8788acf27b |
@@ -10,7 +10,7 @@ import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
|||||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
import { Award, CheckCircle, Leaf, Package, Shield, Star, Sun, Users } from 'lucide-react';
|
import { Award, CheckCircle, Leaf, Package, Shield, Star, Sun, Users, MapPin, Phone } from 'lucide-react';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -46,7 +46,9 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardGallery
|
<HeroBillboardGallery
|
||||||
title="Patna's Most Loved Pure Veg Bakery for Cakes & Sweets"
|
title="Patna's Most Loved Pure Veg Bakery for Cakes & Sweets"
|
||||||
description="Freshly Made • 100% Vegetarian • Trusted by 1,600+ Happy Customers\n⭐ 4.2 Rating | 1,600+ Reviews\nOpen Daily from 9 AM – Fresh Batches Prepared Every Morning"
|
description="Freshly Made • 100% Vegetarian • Trusted by 1,600+ Happy Customers
|
||||||
|
⭐ 4.2 Rating | 1,600+ Reviews
|
||||||
|
Open Daily from 9 AM – Fresh Batches Prepared Every Morning"
|
||||||
tag="🎁 Pure Vegetarian Since 2005"
|
tag="🎁 Pure Vegetarian Since 2005"
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
background={{ variant: "radial-gradient" }}
|
background={{ variant: "radial-gradient" }}
|
||||||
@@ -218,11 +220,101 @@ export default function LandingPage() {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="location" data-section="location">
|
||||||
|
<section className="w-full bg-white dark:bg-slate-950 py-20 px-4 md:px-8">
|
||||||
|
<div className="w-full max-w-4xl mx-auto">
|
||||||
|
{/* Heading */}
|
||||||
|
<div className="text-center mb-12">
|
||||||
|
<h2 className="text-4xl md:text-5xl font-bold text-gray-900 dark:text-white mb-4">
|
||||||
|
Visit Our Store
|
||||||
|
</h2>
|
||||||
|
<p className="text-lg text-gray-600 dark:text-gray-300">
|
||||||
|
Experience freshly baked goodness at our location
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Map Container */}
|
||||||
|
<div className="w-full mb-8 rounded-lg overflow-hidden shadow-lg">
|
||||||
|
<iframe
|
||||||
|
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3560.5201345678!2d85.13890752346827!3d25.59370847657045!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39f44e6000000001%3A0x1234567890abcdef!2sKrishna%20Apartment%20Near%20AN%20College%20Boring%20Road%20Patna%20800013!5e0!3m2!1sen!2sin!4v1234567890123"
|
||||||
|
width="100%"
|
||||||
|
height="400"
|
||||||
|
style={{ border: 0 }}
|
||||||
|
allowFullScreen={true}
|
||||||
|
loading="lazy"
|
||||||
|
referrerPolicy="no-referrer-when-downgrade"
|
||||||
|
title="Krishna Apartment Location Map"
|
||||||
|
className="w-full rounded-lg"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Address and Button Container */}
|
||||||
|
<div className="flex flex-col md:flex-row items-start justify-between gap-8">
|
||||||
|
{/* Address Info */}
|
||||||
|
<div className="flex-1">
|
||||||
|
<div className="flex items-start gap-4 mb-6">
|
||||||
|
<MapPin className="w-6 h-6 text-blue-600 dark:text-blue-400 flex-shrink-0 mt-1" />
|
||||||
|
<div>
|
||||||
|
<h3 className="text-lg font-semibold text-gray-900 dark:text-white mb-2">
|
||||||
|
Our Location
|
||||||
|
</h3>
|
||||||
|
<p className="text-gray-700 dark:text-gray-300 leading-relaxed">
|
||||||
|
Krishna Apartment<br />
|
||||||
|
Near AN College<br />
|
||||||
|
Boring Road<br />
|
||||||
|
Patna 800013<br />
|
||||||
|
India
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex items-start gap-4">
|
||||||
|
<Phone className="w-6 h-6 text-green-600 dark:text-green-400 flex-shrink-0 mt-1" />
|
||||||
|
<div>
|
||||||
|
<h3 className="text-lg font-semibold text-gray-900 dark:text-white mb-2">
|
||||||
|
Contact Us
|
||||||
|
</h3>
|
||||||
|
<a
|
||||||
|
href="tel:09386459895"
|
||||||
|
className="text-blue-600 dark:text-blue-400 hover:underline font-medium"
|
||||||
|
>
|
||||||
|
09386459895
|
||||||
|
</a>
|
||||||
|
<p className="text-gray-600 dark:text-gray-400 text-sm mt-2">
|
||||||
|
Open Daily from 9 AM
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Get Directions Button */}
|
||||||
|
<div className="w-full md:w-auto">
|
||||||
|
<a
|
||||||
|
href="https://maps.app.goo.gl/hn9CdYjZqhBwmLei6"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
className="w-full md:w-auto inline-block px-8 py-4 bg-blue-600 dark:bg-blue-500 text-white font-semibold rounded-lg hover:bg-blue-700 dark:hover:bg-blue-600 transition-colors duration-300 text-center shadow-lg"
|
||||||
|
>
|
||||||
|
Get Directions
|
||||||
|
</a>
|
||||||
|
<p className="text-sm text-gray-600 dark:text-gray-400 mt-4 text-center md:text-left">
|
||||||
|
Opens in Google Maps
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplit
|
<ContactSplit
|
||||||
tag="Get in Touch"
|
tag="Get in Touch"
|
||||||
title="Your Sweet Stop Near AN College"
|
title="Your Sweet Stop Near AN College"
|
||||||
description="Krishna Apartment, Near AN College, Boring Road, Patna – 800013\nPhone: 09386459895\nOpen Daily from 9 AM\n\nPlace your order, make a reservation, or just swing by to experience freshly baked goodness!"
|
description="Krishna Apartment, Near AN College, Boring Road, Patna – 800013
|
||||||
|
Phone: 09386459895
|
||||||
|
Open Daily from 9 AM
|
||||||
|
|
||||||
|
Place your order, make a reservation, or just swing by to experience freshly baked goodness!"
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
background={{ variant: "sparkles-gradient" }}
|
background={{ variant: "sparkles-gradient" }}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/bakery-atmospheric-photo_1321-4640.jpg?_wi=2"
|
imageSrc="http://img.b2bpic.net/free-photo/bakery-atmospheric-photo_1321-4640.jpg?_wi=2"
|
||||||
|
|||||||
Reference in New Issue
Block a user