Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-03-19 07:36:40 +00:00
2 changed files with 126 additions and 14 deletions

View File

@@ -11,6 +11,8 @@ import TestimonialCardThirteen from '@/components/sections/testimonial/Testimoni
import ContactText from '@/components/sections/contact/ContactText';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
import { MapPin, Phone, Mail, MessageCircle } from 'lucide-react';
export default function LandingPage() {
return (
@@ -32,6 +34,7 @@ export default function LandingPage() {
navItems={[
{ name: "About", id: "about" },
{ name: "Menu", id: "menu" },
{ name: "Gallery", id: "gallery" },
{ name: "Why Us", id: "why-us" },
{ name: "Location", id: "location" },
{ name: "Contact", id: "contact" }
@@ -130,6 +133,44 @@ export default function LandingPage() {
/>
</div>
<div id="gallery" data-section="gallery">
<FeatureCardTwentyFour
title="Cafe Aura Gallery"
description="Step into our world explore the cozy corners, delicious food, and vibrant atmosphere that makes Cafe Aura your perfect hangout spot."
tag="Visual Tour"
tagAnimation="slide-up"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
features={[
{
id: "gallery-1", title: "Ambient Interior", author: "Cafe Aura", description: "Cozy seating with warm lighting perfect for studying or relaxing.", tags: ["Interior", "Ambiance"],
imageSrc: "http://img.b2bpic.net/free-photo/table-set-dinning-table_1339-6420.jpg", imageAlt: "Cozy café interior"
},
{
id: "gallery-2", title: "Fresh Food & Drinks", author: "Cafe Aura", description: "Delicious beverages and snacks prepared fresh daily.", tags: ["Food", "Beverages"],
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-cake-slices-with-cookies-cup-tea-dark-background-biscuit-cookie-cake-tea-sweet-dessert_140725-96178.jpg", imageAlt: "Food and beverages"
},
{
id: "gallery-3", title: "Professional Coffee Bar", author: "Cafe Aura", description: "Expert baristas crafting the perfect cup every time.", tags: ["Coffee", "Service"],
imageSrc: "http://img.b2bpic.net/free-photo/happy-smiling-cafe-owner-girl-barista-apron-making-cappuccino-latte-art-with-steamed-milk_1258-203389.jpg", imageAlt: "Professional barista"
},
{
id: "gallery-4", title: "Group Hangout Spot", author: "Cafe Aura", description: "Perfect venue for friends, study groups, and social gatherings.", tags: ["Groups", "Hangout"],
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-eating-break-time_23-2149256937.jpg", imageAlt: "Friends hanging out"
},
{
id: "gallery-5", title: "Open All Night", author: "Cafe Aura", description: "24/7 operations with vibrant neon vibes for late-night enthusiasts.", tags: ["24/7", "Night"],
imageSrc: "http://img.b2bpic.net/free-vector/we-are-open-neon-sign-set-style_23-2148544879.jpg", imageAlt: "Open 24/7 neon sign"
},
{
id: "gallery-6", title: "Romantic Date Setting", author: "Cafe Aura", description: "Intimate ambiance for special moments and celebrations.", tags: ["Romantic", "Special"],
imageSrc: "http://img.b2bpic.net/free-photo/couple-having-date-restaurant_23-2150520062.jpg", imageAlt: "Romantic date setting"
}
]}
/>
</div>
<div id="why-us" data-section="why-us">
<FeatureCardTwelve
title="Why Choose Cafe Aura?"
@@ -198,13 +239,13 @@ export default function LandingPage() {
<div id="location" data-section="location">
<ContactText
text="📍 Cafe Aura, Tathawade, Pimpri-Chinchwad, Maharashtra\n\nLocated near JSPM Engineering College Easy to find, easy to reach. Open 24/7, every single day.\n\nPhone: +91-98765-43210 | Email: hello@cafealura.com"
text="📍 Cafe Aura, Tathawade, Pimpri-Chinchwad, Maharashtra\n\nLocated near JSPM Engineering College Easy to find, easy to reach. Open 24/7, every single day.\n\nPhone: +91-98765-43210 | Email: hello@cafealura.com\n\n🗺 Find us on Google Maps"
animationType="entrance-slide"
background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
buttons={[
{ text: "Call Us Now", href: "tel:+919876543210" },
{ text: "Get Directions", href: "https://maps.google.com" }
{ text: "Get Directions", href: "https://maps.google.com/?q=JSPM+College+Tathawade+Pimpri+Chinchwad" }
]}
/>
</div>
@@ -249,7 +290,9 @@ export default function LandingPage() {
title: "Quick Links", items: [
{ label: "About Us", href: "#about" },
{ label: "Menu", href: "#menu" },
{ label: "Gallery", href: "#gallery" },
{ label: "Why Choose Us", href: "#why-us" },
{ label: "Location", href: "#location" },
{ label: "Contact", href: "#contact" }
]
},
@@ -257,7 +300,7 @@ export default function LandingPage() {
title: "Contact Info", items: [
{ label: "Phone: +91-98765-43210", href: "tel:+919876543210" },
{ label: "Email: hello@cafealura.com", href: "mailto:hello@cafealura.com" },
{ label: "Address: Tathawade, Pimpri-Chinchwad, MH", href: "#" },
{ label: "Address: Tathawade, Pimpri-Chinchwad, MH", href: "https://maps.google.com/?q=JSPM+College+Tathawade" },
{ label: "Hours: Open 24/7", href: "#" }
]
},
@@ -265,7 +308,7 @@ export default function LandingPage() {
title: "Follow Us", items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Google Reviews", href: "#" },
{ label: "Google Reviews", href: "https://maps.google.com" },
{ label: "WhatsApp", href: "https://wa.me/919876543210" }
]
}
@@ -273,6 +316,75 @@ export default function LandingPage() {
copyrightText="© 2024 Cafe Aura. All rights reserved. Open 24/7 • Tathawade, Pimpri-Chinchwad, Maharashtra"
/>
</div>
<style>
{`
/* Sticky Call-to-Action Button - Mobile Optimized */
@keyframes slideUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.sticky-cta-button {
position: fixed;
bottom: 0;
left: 0;
right: 0;
z-index: 999;
padding: 1rem;
background: linear-gradient(135deg, #8B5A3C 0%, #A0522D 100%);
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
animation: slideUp 0.4s ease-out;
}
.sticky-cta-button button {
width: 100%;
padding: 0.875rem 1.5rem;
background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
color: #2b1810;
border: none;
border-radius: 0.5rem;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(255, 165, 0, 0.4);
}
.sticky-cta-button button:hover {
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(255, 165, 0, 0.6);
}
.sticky-cta-button button:active {
transform: translateY(0);
}
@media (max-width: 768px) {
.sticky-cta-button {
padding: 0.75rem 0.5rem;
}
.sticky-cta-button button {
padding: 0.75rem 1rem;
font-size: 0.95rem;
}
}
`}
</style>
{/* Sticky CTA Button */}
<div className="sticky-cta-button">
<button onClick={() => window.location.href = 'tel:+919876543210'}>
Call Now - Get Your Favorite Meal!
</button>
</div>
</ThemeProvider>
);
}
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f5f5f5;
--card: #ffffff;
--foreground: #1c1c1c;
--primary-cta: #1f3251;
--primary-cta-text: #f5f5f5;
--secondary-cta: #ffffff;
--secondary-cta-text: #1c1c1c;
--accent: #15479c;
--background-accent: #a8cce8;
--background: #1a1410;
--card: #2a211c;
--foreground: #e8dcc4;
--primary-cta: #d4a574;
--primary-cta-text: #1a1510;
--secondary-cta: #2a211c;
--secondary-cta-text: #e8dcc8;
--accent: #8B5A3C;
--background-accent: #A0522D;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);