16 Commits

Author SHA1 Message Date
1d07beb96b Merge version_3 into main
Merge version_3 into main
2026-03-04 11:26:29 +00:00
6cb504800d Update src/app/page.tsx 2026-03-04 11:26:25 +00:00
eec15f7d0d Merge version_3 into main
Merge version_3 into main
2026-03-04 11:25:29 +00:00
33a634b5ff Update src/app/styles/variables.css 2026-03-04 11:25:24 +00:00
3af525f8a7 Update src/app/styles/base.css 2026-03-04 11:25:23 +00:00
d8ef6092fd Update src/app/page.tsx 2026-03-04 11:25:23 +00:00
8bea58a522 Update src/app/layout.tsx 2026-03-04 11:25:23 +00:00
571ad50e6b Merge version_2 into main
Merge version_2 into main
2026-03-04 11:17:41 +00:00
fa93cd3a8e Update src/app/page.tsx 2026-03-04 11:17:37 +00:00
3c8775ee41 Merge version_2 into main
Merge version_2 into main
2026-03-04 11:16:35 +00:00
abd1656cc4 Update src/app/styles/variables.css 2026-03-04 11:16:31 +00:00
5a69e58808 Update src/app/page.tsx 2026-03-04 11:16:30 +00:00
51f026a5f2 Update src/app/layout.tsx 2026-03-04 11:16:29 +00:00
9a8c5d7c4f Merge version_1 into main
Merge version_1 into main
2026-03-04 11:09:14 +00:00
b8b3b06350 Merge version_1 into main
Merge version_1 into main
2026-03-04 11:08:23 +00:00
10b2963791 Merge version_1 into main
Merge version_1 into main
2026-03-04 11:07:02 +00:00
4 changed files with 137 additions and 151 deletions

View File

@@ -1,44 +1,23 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Poppins } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const poppins = Poppins({
variable: "--font-poppins", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
export const metadata: Metadata = {
title: "GMK Garden | Premium Banquet & Event Venue in Hyderabad", description: "Book GMK Garden for weddings, corporate events, and celebrations in Hyderabad. 4.0★ rated, AC halls, lawns, catering, open till 2 AM. Perfect venue for 500+ guests.", keywords: "event venue Hyderabad, banquet hall, wedding venue, corporate events, function room, celebration space", openGraph: {
title: "GMK Garden - Hyderabad's Premier Celebration Venue", description: "Premium function venue with AC halls, gardens, catering, and late-night hours. Book your perfect celebration today.", url: "https://gmkgardens.com", siteName: "GMK Garden", type: "website"},
twitter: {
card: "summary_large_image", title: "GMK Garden - Book Your Celebration", description: "Hyderabad's top-rated event venue for weddings, birthdays, and corporate events."},
robots: {
index: true,
follow: true,
},
};
title: "Hamdard Store - Premium Pharmacy & Healing Solutions", description: "Hamdard Store: Your trusted premium pharmacy for authentic Ayurvedic and herbal medicines. Fast delivery, prescription upload, expert consultation. Open with WhatsApp support."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={poppins.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1406,7 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -2,155 +2,163 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import HeroSplit from '@/components/sections/hero/HeroSplit';
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
import SplitAbout from '@/components/sections/about/SplitAbout';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { Users, Home, Car, Moon, Sparkles, Heart, Briefcase, Palette } from 'lucide-react';
import { Droplet, Truck, Home, Clock, Star, MapPin, Phone, MessageCircle, Shield, Heart } from 'lucide-react';
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="reveal-blur"
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="smallMedium"
sizing="largeSmall"
contentWidth="mediumLarge"
sizing="large"
background="circleGradient"
cardStyle="glass-depth"
cardStyle="gradient-bordered"
primaryButtonStyle="gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="semibold"
secondaryButtonStyle="glass"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
brandName="GMK Garden"
brandName="Hamdard Store"
navItems={[
{ name: "Home", id: "home" },
{ name: "About", id: "about" },
{ name: "Gallery", id: "gallery" },
{ name: "Packages", id: "pricing" },
{ name: "Contact", id: "contact" }
{ name: "Home", id: "/" },
{ name: "Services", id: "services" },
{ name: "Products", id: "products" },
{ name: "Process", id: "process" },
{ name: "Testimonials", id: "testimonials" }
]}
button={{ text: "Book Event", href: "contact" }}
button={{ text: "Upload Prescription", href: "contact" }}
/>
</div>
<div id="hero" data-section="hero">
<HeroSplit
title="GMK Garden | జిఎంకె గార్డెన్"
description="Hyderabad's Premier Celebration Hub | 4.0★ (1,520 Reviews) | Open till 2 AM"
tag="Luxury Venue"
background={{ variant: "glowing-orb" }}
imageSrc="http://img.b2bpic.net/free-photo/beautiful-luxurious-wedding-ceremony-hall_181624-59290.jpg"
imageAlt="Grand banquet hall with luxurious lighting"
imagePosition="right"
mediaAnimation="slide-up"
<HeroBillboardCarousel
title="Hamdard Store"
description="Premium Pharmacy with Healing Teal-Green Essence | Fast Delivery & In-Store Shopping | Expert Consultation Available | WhatsApp Support"
tag="Trusted Pharmacy"
background={{ variant: "sparkles-gradient" }}
tagIcon={Shield}
tagAnimation="slide-up"
buttons={[
{ text: "Book Event", href: "contact" },
{ text: "View Gallery", href: "gallery" }
{ text: "Browse Products", href: "products" },
{ text: "Upload Prescription", href: "contact" }
]}
buttonAnimation="slide-up"
mediaItems={[
{ imageSrc: "https://images.unsplash.com/photo-1587854692152-cbe660dbde0e?w=800&h=600&fit=crop&_wi=1", imageAlt: "Premium pharmacy storefront" },
{ imageSrc: "https://images.unsplash.com/photo-1576091160550-112173fba4ee?w=800&h=600&fit=crop&_wi=1", imageAlt: "Healing herbal medicines" },
{ imageSrc: "https://images.unsplash.com/photo-1587854692152-cbe660dbde0e?w=800&h=600&fit=crop&_wi=2", imageAlt: "Professional pharmacy consultation" },
{ imageSrc: "https://images.unsplash.com/photo-1576091160550-112173fba4ee?w=800&h=600&fit=crop&_wi=2", imageAlt: "Authentic Ayurvedic products" },
{ imageSrc: "https://images.unsplash.com/photo-1631217b5f435-a92f2dfe1997?w=800&h=600&fit=crop", imageAlt: "Modern pharmacy interior" },
{ imageSrc: "https://images.unsplash.com/photo-1587854692152-cbe660dbde0e?w=800&h=600&fit=crop&_wi=3", imageAlt: "Expert pharmacy staff" }
]}
ariaLabel="Hamdard Store - Premium Pharmacy"
/>
</div>
<div id="about" data-section="about">
<div id="services" data-section="services">
<SplitAbout
title="Your Dream Venue in Hyderabad"
description="GMK Garden combines luxury, convenience, and world-class hospitality to bring your events to life. With 4.0-star rating from 1,520 delighted guests, we're Hyderabad's most trusted celebration destination."
tag="Why Choose Us"
title="Our Services"
description="Hamdard Store offers comprehensive pharmacy solutions with a focus on healing and wellness. Whether you prefer shopping in our welcoming store or enjoying the convenience of fast delivery, we're here to serve your health needs with authenticity and care."
tag="Healthcare Solutions"
textboxLayout="default"
useInvertedBackground={false}
bulletPoints={[
{
title: "Capacity 500+", description: "Spacious venues for intimate gatherings to grand celebrations", icon: Users
title: "In-Store Shopping", description: "Visit our modern pharmacy to browse our curated selection of authentic medicines, supplements, and wellness products with expert guidance", icon: Home
},
{
title: "AC Halls & Lawns", description: "Indoor and outdoor spaces perfectly suited for any event", icon: Home
title: "Fast Delivery", description: "Quick and reliable delivery service for prescriptions and over-the-counter medicines to your doorstep, available daily", icon: Truck
},
{
title: "Parking for 200 Cars", description: "Convenient, secure parking facilities for all your guests", icon: Car
title: "Prescription Upload", description: "Simple prescription upload process - just share your prescription and our experts verify and fulfill your order", icon: Droplet
},
{
title: "Late Night (Till 2 AM)", description: "Celebrate longer with our extended operating hours", icon: Moon
title: "WhatsApp Support", description: "24/7 customer support via WhatsApp for consultations, queries, and order tracking with instant responses", icon: MessageCircle
}
]}
imageSrc="http://img.b2bpic.net/free-photo/view-from-ceiling-decorated-celebration-hall-with-round-tables_8353-10198.jpg"
imageAlt="Luxurious GMK Garden venue exterior"
imageSrc="https://images.unsplash.com/photo-1587854692152-cbe660dbde0e?w=600&h=600&fit=crop"
imageAlt="Hamdard Store pharmacy services"
imagePosition="right"
mediaAnimation="blur-reveal"
mediaAnimation="slide-up"
/>
</div>
<div id="gallery" data-section="gallery">
<div id="products" data-section="products">
<ProductCardOne
title="Venue Gallery"
description="Explore our stunning spaces designed for unforgettable moments"
tag="Photo Gallery"
title="Popular Products"
description="Explore our best-selling authentic medicines and wellness products trusted by thousands of customers"
tag="Bestsellers"
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
gridVariant="bento-grid"
products={[
{
id: "1", name: "Grand Banquet Hall", price: "Weddings", imageSrc: "http://img.b2bpic.net/free-photo/table-setting-with-floral-centerpiece-wedding-reception-venue_637285-5627.jpg", imageAlt: "Decorated banquet hall for wedding"
id: "1", name: "Premium Herbal Immunity Boost", price: "₹399", imageSrc: "https://images.unsplash.com/photo-1576091160550-112173fba4ee?w=600&h=400&fit=crop&_wi=1", imageAlt: "Herbal immunity supplement"
},
{
id: "2", name: "Birthday Celebrations", price: "Parties", imageSrc: "http://img.b2bpic.net/free-photo/stylish-rich-table-with-sweets-fruits-guests_8353-9122.jpg", imageAlt: "Birthday party setup with decorations"
id: "2", name: "Healing Teal Wellness Oil", price: "₹549", imageSrc: "https://images.unsplash.com/photo-1631217b5f435-a92f2dfe1997?w=600&h=400&fit=crop&_wi=1", imageAlt: "Teal-toned wellness oil"
},
{
id: "3", name: "Corporate Events", price: "Conferences", imageSrc: "http://img.b2bpic.net/free-photo/man-talking-with-cashier-store_482257-79308.jpg", imageAlt: "Professional corporate event setup"
id: "3", name: "Authentic Ayurvedic Tablets", price: "₹299", imageSrc: "https://images.unsplash.com/photo-1587854692152-cbe660dbde0e?w=600&h=400&fit=crop&_wi=1", imageAlt: "Traditional Ayurvedic tablets"
},
{
id: "4", name: "Hall Interior", price: "Architecture", imageSrc: "http://img.b2bpic.net/free-photo/restaurant-hall-with-turquoise-chairs-french-windows-navy-coloured-ceiling_140725-8448.jpg", imageAlt: "Beautifully designed hall interior with lighting"
id: "4", name: "Green Tea Antioxidant Extract", price: "₹449", imageSrc: "https://images.unsplash.com/photo-1576091160550-112173fba4ee?w=600&h=400&fit=crop&_wi=2", imageAlt: "Green tea extract supplement"
},
{
id: "5", name: "Garden Setup", price: "Outdoor", imageSrc: "http://img.b2bpic.net/free-photo/white-wedding-venue-with-swimming-pool_637285-5697.jpg", imageAlt: "Landscaped outdoor garden venue"
id: "5", name: "Healing Balm Collection", price: "₹349", imageSrc: "https://images.unsplash.com/photo-1631217b5f435-a92f2dfe1997?w=600&h=400&fit=crop&_wi=2", imageAlt: "Premium healing balm"
},
{
id: "6", name: "DJ Stage & Production", price: "Entertainment", imageSrc: "http://img.b2bpic.net/free-photo/dj-playing-electronic-music-its-sound-board_1268-20198.jpg", imageAlt: "Professional DJ stage with sound equipment"
id: "6", name: "Complete Vitamin Bundle", price: "₹699", imageSrc: "https://images.unsplash.com/photo-1587854692152-cbe660dbde0e?w=600&h=400&fit=crop&_wi=2", imageAlt: "Vitamin supplement bundle"
}
]}
/>
</div>
<div id="pricing" data-section="pricing">
<div id="process" data-section="process">
<PricingCardEight
title="Event Packages"
description="Choose the perfect package for your celebration. All packages include premium venue access, customizable catering, and professional event coordination."
tag="Pricing"
title="Prescription Upload Process"
description="Simple and secure prescription upload with verification by our expert pharmacists. Follow our easy 4-step process to get your medicines delivered quickly."
tag="Simple Process"
textboxLayout="default"
useInvertedBackground={true}
animationType="scale-rotate"
plans={[
{
id: "birthday", badge: "Popular", badgeIcon: Sparkles,
price: "₹50,000", subtitle: "Perfect for intimate birthday celebrations", buttons: [{ text: "Inquire Now", href: "contact" }],
id: "step1", badge: "Step 1", badgeIcon: Clock,
price: "Upload", subtitle: "Share your prescription", buttons: [{ text: "Learn More", href: "contact" }],
features: [
"AC Hall (up to 150 guests)", "Basic catering setup", "Decorations assistance", "Sound system included", "Complimentary parking"
"Take a clear photo of your prescription", "Upload via our secure form or WhatsApp", "Include all medicine details and dosage", "Provide patient name and contact info"
]
},
{
id: "wedding", badge: "Most Popular", badgeIcon: Heart,
price: "₹2,50,000", subtitle: "Complete wedding experience", buttons: [{ text: "Book Now", href: "contact" }],
id: "step2", badge: "Step 2", badgeIcon: Shield,
price: "Verify", subtitle: "Expert verification", buttons: [{ text: "Learn More", href: "contact" }],
features: [
"Multiple halls & lawns", "Premium catering (unlimited)", "Professional decor team", "DJ & sound production", "Extended operating hours", "Wedding specialist coordination"
"Our pharmacists review your prescription", "Verify authenticity and accuracy", "Check for drug interactions", "Confirm with you via WhatsApp or phone"
]
},
{
id: "corporate", badge: "Professional", badgeIcon: Briefcase,
price: "₹1,00,000", subtitle: "Corporate events & conferences", buttons: [{ text: "Inquire Now", href: "contact" }],
id: "step3", badge: "Step 3", badgeIcon: Droplet,
price: "Prepare", subtitle: "Medicine preparation", buttons: [{ text: "Learn More", href: "contact" }],
features: [
"Executive banquet hall", "Conference setup", "Catering arrangements", "A/V equipment rental", "Professional atmosphere", "Business coordination support"
"Collect authentic medicines from inventory", "Quality check by experienced staff", "Professional packing for safety", "Generate invoice and documentation"
]
},
{
id: "custom", badge: "Custom", badgeIcon: Palette,
price: "Quote on Request", subtitle: "Tailored for your unique vision", buttons: [{ text: "Get Quote", href: "contact" }],
id: "step4", badge: "Step 4", badgeIcon: Truck,
price: "Deliver", subtitle: "Fast delivery to you", buttons: [{ text: "Learn More", href: "contact" }],
features: [
"Fully customizable package", "Personalized coordination", "Flexible hours available", "Special requests accommodated", "Premium services", "Dedicated event manager"
"Same-day or next-day delivery available", "Track your order in real-time", "Receive with WhatsApp confirmation", "Expert guidance for medicine usage"
]
}
]}
@@ -159,29 +167,29 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials">
<TestimonialCardTen
title="Trusted by Hyderabad"
description="Join thousands of happy clients who've celebrated their most cherished moments at GMK Garden"
tag="Testimonials"
title="What Our Customers Say"
description="Join thousands of satisfied customers who trust Hamdard Store for their health and wellness needs. Read their genuine testimonials and ratings."
tag="4.6★ Rating"
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
{
id: "1", title: "Perfect Wedding Venue", quote: "Our 300-guest wedding was absolutely flawless! The venue, catering, and coordination were exceptional. GMK Garden exceeded all our expectations. Highly recommended for any celebration!", name: "Priya & Arjun", role: "Bride & Groom", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", imageAlt: "Priya & Arjun's wedding photo"
id: "1", title: "Reliable & Authentic", quote: "Hamdard Store is my go-to pharmacy. The medicines are always authentic, staff is knowledgeable, and delivery is incredibly fast. WhatsApp support is fantastic!", name: "Rajesh Kumar", role: "Customer", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=150&h=150&fit=crop&_wi=1", imageAlt: "Rajesh Kumar"
},
{
id: "2", title: "Outstanding Event Management", quote: "We hosted our corporate gala here and it was incredibly professional. The team handled every detail with expertise. The ambiance and service were top-notch. Best venue in Hyderabad!", name: "Rajesh Kumar", role: "Corporate Event Manager", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=2", imageAlt: "Rajesh Kumar's corporate event photo"
id: "2", title: "Great Experience", quote: "The prescription upload process is so simple. I just sent a photo via WhatsApp and got my medicines the next day. Excellent service and reasonable prices!", name: "Priya Sharma", role: "Customer", imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=150&h=150&fit=crop&_wi=1", imageAlt: "Priya Sharma"
},
{
id: "3", title: "Birthday Bash Success", quote: "My son's 21st birthday party was the talk of the town! The décor, food, and overall experience were fantastic. The staff was so helpful and accommodating. Thank you GMK Garden!", name: "Sneha Mehta", role: "Parent", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=3", imageAlt: "Sneha Mehta's celebration photo"
id: "3", title: "Professional & Trustworthy", quote: "I appreciate the expert verification of prescriptions and the guidance provided by pharmacists. Hamdard Store truly cares about customer health!", name: "Dr. Amit Patel", role: "Medical Professional", imageSrc: "https://images.unsplash.com/photo-1500648767791-00dcc994a43e?w=150&h=150&fit=crop", imageAlt: "Dr. Amit Patel"
},
{
id: "4", title: "Best Venue Ever", quote: "We couldn't have asked for a better venue for our engagement party. The team went above and beyond to make it special. The late-night hours were perfect for our guests. Absolutely loved it!", name: "Vikram Singh", role: "Groom", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=4", imageAlt: "Vikram Singh's engagement photo"
id: "4", title: "5-Star Service", quote: "From prescription upload to delivery, every step was smooth. The teal-themed store is beautiful, and the team is super helpful. Highly recommended!", name: "Neha Gupta", role: "Customer", imageSrc: "https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=150&h=150&fit=crop", imageAlt: "Neha Gupta"
},
{
id: "5", title: "Exceptional Venue & Hospitality", quote: "From booking to execution, everything was seamless. The parking, catering options, and garden ambiance were all exceptional. 4.0 stars is well-deserved!", name: "Anjali Desai", role: "Event Planner", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=5", imageAlt: "Anjali Desai's event planning photo"
id: "5", title: "Convenient & Reliable", quote: "As a busy professional, Hamdard's fast delivery saves me time. The WhatsApp support is instant, and I can track my order anytime. Perfect!", name: "Vikram Singh", role: "Customer", imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=150&h=150&fit=crop&_wi=2", imageAlt: "Vikram Singh"
},
{
id: "6", title: "Perfect for Late-Night Celebrations", quote: "The fact that they're open till 2 AM is fantastic for our DJ night. The setup, lighting, and entertainment options made our party unforgettable. Highly recommend!", name: "Aditya Nair", role: "Party Organizer", imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=6", imageAlt: "Aditya Nair's party photo"
id: "6", title: "Best Local Pharmacy", quote: "Hamdard Store is the best pharmacy I've found. Quality products, authentic medicines, expert staff, and amazing customer care. Worth every visit!", name: "Anjali Desai", role: "Customer", imageSrc: "https://images.unsplash.com/photo-1494790108377-be9c29b29330?w=150&h=150&fit=crop&_wi=2", imageAlt: "Anjali Desai"
}
]}
/>
@@ -189,18 +197,18 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactSplit
tag="Contact Us"
title="Ready to Celebrate?"
description="Get in touch with our team to discuss your event. Whether it's a wedding, birthday, corporate event, or custom celebration, we're here to make it unforgettable."
tag="Get Started"
title="Upload Your Prescription Now"
description="Join thousands of healthy customers. Upload your prescription securely and get authentic medicines delivered fast. Our expert pharmacists verify every order with care. WhatsApp support available 24/7 for your peace of mind."
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-vector/web-contact-form-template_23-2147608998.jpg"
imageAlt="Contact form interface"
imageSrc="https://images.unsplash.com/photo-1576091160550-112173fba4ee?w=600&h=600&fit=crop"
imageAlt="Prescription upload form"
mediaPosition="right"
mediaAnimation="opacity"
mediaAnimation="slide-up"
inputPlaceholder="your@email.com"
buttonText="Send Inquiry"
termsText="By submitting, you agree to our Terms & Conditions and will be contacted by our team shortly."
buttonText="Upload Prescription"
termsText="By uploading your prescription, you agree to our privacy policy. Your health information is secure and verified by licensed pharmacists. We also provide WhatsApp support for all your queries."
/>
</div>
@@ -209,40 +217,40 @@ export default function LandingPage() {
columns={[
{
title: "Navigate", items: [
{ label: "Home", href: "#home" },
{ label: "About", href: "#about" },
{ label: "Gallery", href: "#gallery" },
{ label: "Packages", href: "#pricing" },
{ label: "Contact", href: "#contact" }
]
},
{
title: "Venue Info", items: [
{ label: "Location", href: "https://maps.google.com/?q=9-3-58/A/1/22,+outside+motidarwaza,+Moti+Darwaza+Rd,+Baghdad+Colony,+Langar+Houz,+Hyderabad,+Telangana+500008" },
{ label: "Phone: 099128 62964", href: "tel:09912862964" },
{ label: "Hours: 10 AM - 2 AM", href: "#" },
{ label: "Capacity: 500+ Guests", href: "#" }
{ label: "Home", href: "/" },
{ label: "Services", href: "services" },
{ label: "Products", href: "products" },
{ label: "Process", href: "process" },
{ label: "Testimonials", href: "testimonials" }
]
},
{
title: "Services", items: [
{ label: "Weddings", href: "#pricing" },
{ label: "Corporate Events", href: "#pricing" },
{ label: "Birthdays", href: "#pricing" },
{ label: "Custom Events", href: "#contact" }
{ label: "In-Store Shopping", href: "services" },
{ label: "Fast Delivery", href: "services" },
{ label: "Prescription Upload", href: "contact" },
{ label: "WhatsApp Support", href: "https://wa.me/" }
]
},
{
title: "Legal", items: [
title: "Contact Info", items: [
{ label: "WhatsApp: Available 24/7", href: "https://wa.me/" },
{ label: "Call Us: +91-XXXX-XXXX", href: "tel:+91" },
{ label: "Find Location: Google Maps", href: "https://maps.google.com/?q=pharmacy" },
{ label: "Email: info@hamdardstore.com", href: "mailto:info@hamdardstore.com" }
]
},
{
title: "Trust & Safety", items: [
{ label: "Verified Pharmacists", href: "#" },
{ label: "Authentic Medicines", href: "#" },
{ label: "Privacy Policy", href: "#" },
{ label: "Terms & Conditions", href: "#" },
{ label: "Booking Policy", href: "#" },
{ label: "Contact Privacy", href: "#" }
{ label: "Terms & Conditions", href: "#" }
]
}
]}
bottomLeftText="© 2025 GMK Garden (జిఎంకె గార్డెన్). All rights reserved."
bottomRightText="Premium Event Venue | Hyderabad"
bottomLeftText="© 2025 Hamdard Store. All rights reserved. Your trusted pharmacy partner."
bottomRightText="Healing • Trust • Expert Care • Fast Delivery"
/>
</div>
</ThemeProvider>

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-inter), sans-serif;
font-family: var(--font-poppins), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-inter), sans-serif;
font-family: var(--font-poppins), sans-serif;
}

View File

@@ -2,23 +2,23 @@
/* Base units */
/* --vw is set by ThemeProvider */
/* --background: #ffffff;;
--card: #f9f9f9;;
--foreground: #120006e6;;
--primary-cta: #e63946;;
--secondary-cta: #f9f9f9;;
--accent: #e2e2e2;;
--background-accent: #c4c4c4;; */
/* --background: #f0fffe;;
--card: #e8f9f8;;
--foreground: #0d3f3d;;
--primary-cta: #0d9b8f;;
--secondary-cta: #e8f9f8;;
--accent: #16d4c4;;
--background-accent: #3db8a8;; */
--background: #ffffff;;
--card: #f9f9f9;;
--foreground: #120006e6;;
--primary-cta: #e63946;;
--background: #f0fffe;;
--card: #e8f9f8;;
--foreground: #0d3f3d;;
--primary-cta: #0d9b8f;;
--primary-cta-text: #ffffff;;
--secondary-cta: #f9f9f9;;
--secondary-cta: #e8f9f8;;
--secondary-cta-text: #120006e6;;
--accent: #e2e2e2;;
--background-accent: #c4c4c4;;
--accent: #16d4c4;;
--background-accent: #3db8a8;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);