Files
2a82d75a-5fc5-4898-9ae9-c40…/src/app/page.tsx
2026-03-11 09:12:45 +00:00

192 lines
14 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel";
import SplitAbout from "@/components/sections/about/SplitAbout";
import ProductCardOne from "@/components/sections/product/ProductCardOne";
import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix";
import ContactFaq from "@/components/sections/contact/ContactFaq";
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import { Sparkles, Heart, Leaf, Star, Calendar } from "lucide-react";
export default function AhmarinaSite() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="small"
sizing="mediumLargeSizeMediumTitles"
background="circleGradient"
cardStyle="inset"
primaryButtonStyle="double-inset"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Ahmarina"
navItems={[
{ name: "Menu", id: "menu" },
{ name: "About", id: "about" },
{ name: "Gallery", id: "gallery" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Book Table", href: "reservation" }}
animateOnLoad={true}
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardCarousel
title="Ahmarina Where Flavors Meet Elegance"
description="Experience culinary artistry at its finest. From Kerala Fried Chicken to our Signature Salmon, every dish is crafted with precision and passion in an atmosphere of refined elegance."
tag="Fine Dining Experience"
tagAnimation="blur-reveal"
buttons={[
{ text: "Book a Table", href: "reservation" },
{ text: "View Menu", href: "menu" }
]}
buttonAnimation="slide-up"
background={{ variant: "sparkles-gradient" }}
mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/wide-restaurant-hall-with-wooden-table-chairs-6-persons_140725-8910.jpg", imageAlt: "Elegant Ahmarina restaurant interior at dusk" },
{ imageSrc: "http://img.b2bpic.net/free-photo/salmon-steak_74190-1398.jpg?_wi=1", imageAlt: "Signature Salmon with Lychee Love Mocktail" },
{ imageSrc: "http://img.b2bpic.net/free-photo/fried-spicy-chicken-leg-white-plate-with-lemon_114579-19663.jpg?_wi=1", imageAlt: "Kerala Fried Chicken" },
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-cooked-potatoes-with-greens-inside-plate-dark-surface-cooking-cips-dinner-food-potato_140725-102158.jpg?_wi=1", imageAlt: "Chicken Tikka Masala & Butter Naan" },
{ imageSrc: "http://img.b2bpic.net/free-photo/crepe-with-meat-table_140725-2370.jpg?_wi=1", imageAlt: "Samosa Chaat & Shrimp Bisque" },
{ imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-chocolate-cake_23-2148549956.jpg", imageAlt: "Decadent Chocolate Cake Dessert" }
]}
/>
</div>
<div id="about" data-section="about">
<SplitAbout
title="A Culinary Journey"
description="At Ahmarina, every dish is crafted with care and precision. From the Kerala Fried Chicken to the Signature Salmon, our menu blends international flavors with local freshness. With attentive staff and a welcoming ambiance, we ensure every visit is a memorable experience."
tag="Our Story"
tagAnimation="blur-reveal"
bulletPoints={[
{ title: "Culinary Excellence", description: "Every plate is a masterpiece, combining technique, quality ingredients, and innovative flavors", icon: Sparkles },
{ title: "Warm Hospitality", description: "Our dedicated staff anticipates your needs and ensures your comfort throughout your dining experience", icon: Heart },
{ title: "Local & Fresh", description: "We source the finest ingredients locally and internationally to create authentic, vibrant flavors", icon: Leaf },
{ title: "Memorable Moments", description: "Every visit to Ahmarina is designed to create lasting memories with loved ones", icon: Star }
]}
imageSrc="http://img.b2bpic.net/free-photo/young-curly-woman-enjoying-her-wine-bar_627829-6890.jpg"
imageAlt="Ahmarina restaurant elegant interior with warm lighting"
mediaAnimation="blur-reveal"
textboxLayout="default"
useInvertedBackground={false}
imagePosition="right"
/>
</div>
<div id="menu" data-section="menu">
<ProductCardOne
title="Our Signature Creations"
description="Discover the culinary treasures that define Ahmarina. Each dish is expertly prepared with the finest ingredients and utmost attention to detail."
tag="Menu Highlights"
tagAnimation="blur-reveal"
products={[
{ id: "1", name: "Ahmarina Signature Salmon", price: "Premium", imageSrc: "http://img.b2bpic.net/free-photo/salmon-steak_74190-1398.jpg?_wi=2", imageAlt: "Signature Salmon with Lychee Love Mocktail" },
{ id: "2", name: "Kerala Fried Chicken", price: "Classic", imageSrc: "http://img.b2bpic.net/free-photo/fried-spicy-chicken-leg-white-plate-with-lemon_114579-19663.jpg?_wi=2", imageAlt: "Kerala Fried Chicken preparation" },
{ id: "3", name: "Chicken Tikka Masala", price: "Signature", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-cooked-potatoes-with-greens-inside-plate-dark-surface-cooking-cips-dinner-food-potato_140725-102158.jpg?_wi=2", imageAlt: "Chicken Tikka Masala with Butter Naan" },
{ id: "4", name: "Samosa Chaat", price: "Appetizer", imageSrc: "http://img.b2bpic.net/free-photo/crepe-with-meat-table_140725-2370.jpg?_wi=2", imageAlt: "Samosa Chaat with Shrimp Bisque" }
]}
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardSix
title="What Our Guests Say"
description="Hear directly from those who have experienced the Ahmarina difference."
tag="Guest Reviews"
tagAnimation="blur-reveal"
testimonials={[
{ id: "1", name: "Sarah Mitchell", handle: "@sarahmitchell", testimonial: "★★★★★ From the wait staff to the food, I was left extremely impressed. The attention to detail made for a pleasant dining experience that I won't forget.", imageSrc: "http://img.b2bpic.net/free-photo/worker-with-big-smile-crossed-arms_1139-248.jpg?_wi=1", imageAlt: "Sarah Mitchell" },
{ id: "2", name: "James Chen", handle: "@jameschef", testimonial: "★★★★★ The flavors were deep and intense. The Kerala Fried Chicken was perfectly executed. Overall the experience was quite pleasant, and I will visit again.", imageSrc: "http://img.b2bpic.net/free-photo/confident-cheerful-businesswoman_1262-21021.jpg?_wi=1", imageAlt: "James Chen" },
{ id: "3", name: "Victoria Adams", handle: "@viadams", testimonial: "★★★★★ The service here was great. The staff were attentive and friendly, and the setting was beautiful and elegant. Ahmarina exceeded all expectations.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-outdoor-businessman_23-2148763884.jpg", imageAlt: "Victoria Adams" },
{ id: "4", name: "Michael Rodriguez", handle: "@mrodriguez", testimonial: "★★★★★ An exceptional dining experience from start to finish. The Signature Salmon was outstanding, and the ambiance created the perfect evening with my partner.", imageSrc: "http://img.b2bpic.net/free-photo/male-executive-with-glasses_1098-760.jpg", imageAlt: "Michael Rodriguez" },
{ id: "5", name: "Elena Petrov", handle: "@elenapetrov", testimonial: "★★★★★ Each course was a surprise and delight. The sommelier recommendations were perfect, and the presentation was pure artistry on every plate.", imageSrc: "http://img.b2bpic.net/free-photo/worker-with-big-smile-crossed-arms_1139-248.jpg?_wi=2", imageAlt: "Elena Petrov" },
{ id: "6", name: "David Thompson", handle: "@davidthompson", testimonial: "★★★★★ Brought my family for a special celebration. The staff made us feel so welcome, and the food quality is exceptional. We're already planning our next visit.", imageSrc: "http://img.b2bpic.net/free-photo/confident-cheerful-businesswoman_1262-21021.jpg?_wi=2", imageAlt: "David Thompson" }
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
speed={40}
topMarqueeDirection="left"
buttons={[
{ text: "Join Our Guests", href: "reservation" }
]}
buttonAnimation="slide-up"
/>
</div>
<div id="reservation" data-section="reservation">
<ContactFaq
ctaTitle="Reserve Your Table"
ctaDescription="Secure your place at Ahmarina for an unforgettable culinary experience. We prioritize your comfort and ensure every visit is extraordinary."
ctaButton={{ text: "Book Now", href: "#" }}
ctaIcon={Calendar}
faqs={[
{ id: "1", title: "What are your operating hours?", content: "Ahmarina is open Tuesday through Sunday, 5:00 PM to 11:00 PM. We are closed Mondays for private events. Walk-ins are welcome, but we recommend booking in advance for the full Ahmarina experience." },
{ id: "2", title: "Do you accommodate dietary preferences?", content: "Absolutely! We welcome requests for vegetarian, vegan, gluten-free, and other dietary requirements. Please mention your preferences when booking, and our culinary team will craft special dishes tailored to your needs." },
{ id: "3", title: "What is your dress code?", content: "We maintain a smart casual dress code. We recommend elegant attire to match the sophisticated ambiance of Ahmarina. However, the most important thing is that you feel comfortable and confident." },
{ id: "4", title: "Do you offer private events or catering?", content: "Yes! Ahmarina is perfect for intimate celebrations, corporate events, and special occasions. Contact our events team at events@ahmarina.com or call for personalized catering packages and private dining options." }
]}
useInvertedBackground={false}
animationType="slide-up"
/>
</div>
<div id="gallery" data-section="gallery">
<FeatureCardMedia
title="Moments at Ahmarina"
description="Explore the visual beauty of our culinary creations and the warm ambiance that makes every visit special."
tag="Gallery"
tagAnimation="blur-reveal"
features={[
{ id: "1", title: "Exquisite Plating", description: "Each dish is a visual masterpiece, combining aesthetic beauty with culinary excellence", tag: "Cuisine", imageSrc: "http://img.b2bpic.net/free-photo/side-view-fried-meat-with-fried-zucchini-grape-branch-statue-head-round-plate_176474-3089.jpg", imageAlt: "Beautifully plated gourmet dish" },
{ id: "2", title: "Elegant Ambiance", description: "Sophisticated dining environment with warm lighting and refined décor", tag: "Atmosphere", imageSrc: "http://img.b2bpic.net/free-photo/cozy-cafeteria-event-hall-with-white-furniture-imaeg_114579-2231.jpg", imageAlt: "Restaurant interior with elegant table settings" },
{ id: "3", title: "Signature Beverages", description: "Craft mocktails and curated drinks perfectly complementing our culinary offerings", tag: "Beverages", imageSrc: "http://img.b2bpic.net/free-photo/elegant-vegan-alcohol-arrangement_23-2149337730.jpg", imageAlt: "Elegantly presented signature beverage" },
{ id: "4", title: "Artisanal Desserts", description: "Sweet endings to perfect meals, crafted with precision and premium ingredients", tag: "Desserts", imageSrc: "http://img.b2bpic.net/free-photo/top-view-creamy-delicious-cake-with-strawberries-white-surface-cream-tea-biscuit-birthday-cake-sweet_140725-101620.jpg", imageAlt: "Fine dining dessert presentation" },
{ id: "5", title: "Behind the Scenes", description: "Meet the passionate team crafting every element of the Ahmarina experience", tag: "Team", imageSrc: "http://img.b2bpic.net/free-photo/chairs-around-table-fuzzy_1203-1091.jpg", imageAlt: "Professional kitchen team at work" }
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="contact" data-section="contact">
<FaqSplitText
sideTitle="Find Us"
sideDescription="Visit Ahmarina for an unforgettable culinary journey. Walk-ins are welcome, but we recommend booking for the full experience."
faqs={[
{ id: "1", title: "Where is Ahmarina located?", content: "<strong>Ahmarina Restaurant</strong><br/>123 Culinary Lane<br/>Downtown District<br/>City, State 12345<br/><br/><strong>Phone:</strong> (555) 123-4567<br/><strong>Email:</strong> info@ahmarina.com" },
{ id: "2", title: "What are your hours?", content: "<strong>Tuesday - Thursday:</strong> 5:00 PM - 10:30 PM<br/><strong>Friday - Saturday:</strong> 5:00 PM - 11:30 PM<br/><strong>Sunday:</strong> 5:00 PM - 10:00 PM<br/><strong>Closed Mondays</strong><br/><br/>Special hours available for private events." },
{ id: "3", title: "How do I get there?", content: "Located in the heart of downtown, Ahmarina is easily accessible by car with complimentary valet parking. We are also convenient to public transportation with the metro station just two blocks away." }
]}
useInvertedBackground={false}
textPosition="left"
faqsAnimation="blur-reveal"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Ahmarina"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "© 2025 Ahmarina Restaurant", href: "#" }}
/>
</div>
</ThemeProvider>
);
}