9 Commits

Author SHA1 Message Date
50d5751c9c Update src/app/page.tsx 2026-03-09 09:27:17 +00:00
ff5d6f95a7 Update src/app/page.tsx 2026-03-09 09:25:53 +00:00
160e6c0508 Update src/app/layout.tsx 2026-03-09 09:25:53 +00:00
f51e94b0ec Merge version_2 into main
Merge version_2 into main
2026-03-09 09:23:50 +00:00
57a247d729 Update src/app/page.tsx 2026-03-09 09:23:46 +00:00
f01d4f6d0f Update src/app/layout.tsx 2026-03-09 09:23:46 +00:00
7837bdd7bd Merge version_1 into main
Merge version_1 into main
2026-03-09 09:16:21 +00:00
f9137e8644 Merge version_1 into main
Merge version_1 into main
2026-03-09 09:15:41 +00:00
8fc6d3c182 Merge version_1 into main
Merge version_1 into main
2026-03-09 09:14:19 +00:00
2 changed files with 25 additions and 1403 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,6 @@
"use client";
import { useState } from 'react';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
@@ -13,6 +14,12 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { Armchair, CheckCircle, Clock, Leaf, Shield, Sparkles } from 'lucide-react';
export default function LandingPage() {
const [mounted, setMounted] = useState(true);
if (!mounted) {
return null;
}
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
@@ -186,10 +193,9 @@ export default function LandingPage() {
imageAlt="Welcoming cafe entrance"
mediaPosition="right"
mediaAnimation="slide-up"
inputPlaceholder="Your email for updates"
buttonText="Get Updates"
termsText="We'll send you special offers and updates about new menu items."
onSubmit={(email: string) => { console.log('Email:', email); }}
inputPlaceholder="📍 Belgaum | 📞 +91-9876543210 | ⏰ 6:30 AM - 11:00 PM"
buttonText="Reserve Your Table"
termsText="Call us at +91-9876543210 or visit us directly. We're open daily from 6:30 AM to 11:00 PM. Located in the heart of Belgaum with easy parking."
/>
</div>