185 lines
12 KiB
TypeScript
185 lines
12 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
|
import FaqDouble from '@/components/sections/faq/FaqDouble';
|
|
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
|
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
|
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
|
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
|
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
|
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
|
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
|
import { Utensils } from "lucide-react";
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="icon-arrow"
|
|
defaultTextAnimation="background-highlight"
|
|
borderRadius="pill"
|
|
contentWidth="compact"
|
|
sizing="mediumLarge"
|
|
background="fluid"
|
|
cardStyle="gradient-radial"
|
|
primaryButtonStyle="radial-glow"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="bold"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav" className="fixed top-0 w-full z-50 transition-all duration-300">
|
|
<NavbarLayoutFloatingOverlay
|
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CUIvgppqGcoIM1QHyjTHhAhT6D/uploaded-1776434298887-3lyx9q5u.jpg"
|
|
navItems={[
|
|
{ name: "Acasă", id: "#hero" },
|
|
{ name: "Despre Noi", id: "#about" },
|
|
{ name: "Meniu", id: "#menu" },
|
|
{ name: "Rezervă", id: "#contact" },
|
|
]}
|
|
brandName="Five Puppies"
|
|
className="bg-transparent backdrop-blur-none"
|
|
logoClassName="mx-auto"
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroBillboardTestimonial
|
|
useInvertedBackground={true}
|
|
background={{
|
|
variant: "gradient-bars"}}
|
|
title="Cinci Pui — Mâncare Bună, Oaspeți Buni"
|
|
description="Discover authentic, hearty cuisine in a warm, welcoming atmosphere. Reserve your table today and experience dining the Five Puppies way."
|
|
testimonials={[
|
|
{ name: "Maria Popescu", handle: "@maria", testimonial: "Cea mai bună mâncare tradițională din oraș!", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/successful-young-man-stylish-hat-relaxing-alone-cozy-cafeteria-lunch-break-looking-with-happy-expression_273609-1935.jpg?_wi=1" },
|
|
{ name: "Ion Ionescu", handle: "@ion", testimonial: "Atmosferă primitoare și servire excelentă.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-kids-table_23-2149213368.jpg?_wi=1" },
|
|
{ name: "Elena Vasile", handle: "@elena", testimonial: "Recomand cu drag pentru familie.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-enjoying-dining-table-while-communicating-with-her-husband_637285-3516.jpg?_wi=1" },
|
|
{ name: "Andrei Marin", handle: "@andrei", testimonial: "Mâncare autentică ca la bunica.", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/attractive-young-woman-hands-holds-two-burgers-blurred-background_169016-43765.jpg?_wi=1" },
|
|
{ name: "Ioana Radu", handle: "@ioana", testimonial: "O experiență culinară minunată.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-tasty-dishes_23-2147680639.jpg?_wi=1" },
|
|
]}
|
|
buttons={[{ text: "Rezervă Acum", href: "#contact" }]}
|
|
imageSrc="http://img.b2bpic.net/free-photo/retro-theatre-scene-celebrate-world-theatre-day_23-2151211460.jpg"
|
|
mediaAnimation="slide-up"
|
|
avatars={[
|
|
{ src: "http://img.b2bpic.net/free-photo/restaurant-with-leather-sofa-paintings-wall_140725-9715.jpg", alt: "Portrait 1" },
|
|
{ src: "http://img.b2bpic.net/free-photo/luxury-dining-room-illuminated-by-candlelight-glow-generated-by-ai_188544-24152.jpg", alt: "Portrait 2" },
|
|
{ src: "http://img.b2bpic.net/free-photo/restaurant-setting-with-wooden-chairs-tables-beautiful-view_181624-9887.jpg", alt: "Portrait 3" },
|
|
{ src: "http://img.b2bpic.net/free-photo/photorealistic-wooden-house-interior-with-timber-decor-furnishings_23-2151263526.jpg", alt: "Portrait 4" },
|
|
{ src: "http://img.b2bpic.net/free-photo/positive-caucasian-business-male-taking-off-face-mask-virus-protection-show-his-smile-with-cheerful-get-well-fight-spread-covid-19-epidemic-health-ideas-concept_609648-1061.jpg", alt: "Portrait 5" },
|
|
]}
|
|
marqueeItems={[
|
|
{ type: "text", text: "Tradițional" },
|
|
{ type: "text", text: "Proaspăt" },
|
|
{ type: "text", text: "Primitor" },
|
|
{ type: "text", text: "Autentic" },
|
|
{ type: "text", text: "Cozzy" },
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="about" data-section="about">
|
|
<TestimonialAboutCard
|
|
useInvertedBackground={false}
|
|
tag="Povestea Noastră"
|
|
title="O Tradiție de Ospitalitate"
|
|
description="At Five Puppies, we believe food brings people together. Our kitchen combines local flavors with heartwarming recipes passed down through generations."
|
|
subdescription="Whether you are here for a family dinner or a quick lunch, our doors are always open to you."
|
|
icon={Utensils}
|
|
imageSrc="http://img.b2bpic.net/free-photo/high-angle-chef-cooking_23-2148471935.jpg"
|
|
mediaAnimation="blur-reveal"
|
|
/>
|
|
</div>
|
|
|
|
<div id="features" data-section="features">
|
|
<FeatureCardEight
|
|
textboxLayout="split"
|
|
useInvertedBackground={true}
|
|
features={[
|
|
{ title: "Mâncare Autentică", description: "Rețete locale gătite zilnic cu ingrediente proaspete.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-stewed-meat-vegetables-potatoes-herbs-white-plate_140725-10299.jpg" },
|
|
{ title: "Ambient Primitor", description: "Un decor cald, perfect pentru orice ocazie.", imageSrc: "http://img.b2bpic.net/free-photo/table-with-food-thanksgiving-day-event_23-2148632534.jpg" },
|
|
{ title: "Pet-Friendly", description: "Suntem o locație care iubește animalele de companie.", imageSrc: "http://img.b2bpic.net/free-photo/smiley-woman-posing-with-cute-rescue-dog_23-2148682981.jpg" },
|
|
]}
|
|
title="De ce Cinci Pui?"
|
|
description="Enjoy an experience designed for comfort and authentic taste in every bite."
|
|
/>
|
|
</div>
|
|
|
|
<div id="menu" data-section="menu">
|
|
<ProductCardTwo
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
gridVariant="uniform-all-items-equal"
|
|
useInvertedBackground={false}
|
|
products={[
|
|
{ id: "1", brand: "Preparate", name: "Grătar Tradițional", price: "45 RON", rating: 5, reviewCount: "120", imageSrc: "http://img.b2bpic.net/free-photo/dolma-from-cabbage-leaves-with-chestnut-clay-pots_140725-3245.jpg" },
|
|
{ id: "2", brand: "Salate", name: "Salată de Grădină", price: "25 RON", rating: 5, reviewCount: "85", imageSrc: "http://img.b2bpic.net/free-photo/vegetable-salad-with-tomato-lettuce-red-onion-bell-pepper-olive-cheese_141793-420.jpg" },
|
|
{ id: "3", brand: "Supe", name: "Ciorbă de Casă", price: "20 RON", rating: 4, reviewCount: "200", imageSrc: "http://img.b2bpic.net/free-photo/close-up-view-delicious-thanksgiving-meal_23-2148629572.jpg" },
|
|
{ id: "4", brand: "Desert", name: "Papanași Calzi", price: "22 RON", rating: 5, reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/front-view-little-delicious-cake-with-chocolate-raisins-light-dark-background_140725-132617.jpg" },
|
|
{ id: "5", brand: "Băuturi", name: "Vinul Casei", price: "15 RON", rating: 5, reviewCount: "60", imageSrc: "http://img.b2bpic.net/free-photo/different-dishes-beer_23-2147681108.jpg" },
|
|
{ id: "6", brand: "Aperitive", name: "Platou Mix", price: "55 RON", rating: 4, reviewCount: "45", imageSrc: "http://img.b2bpic.net/free-photo/view-soft-cake-decorated-with-orange-chocolate-dark-table_140725-86436.jpg" },
|
|
]}
|
|
title="Meniul Nostru"
|
|
description="Explorați selecția noastră de preparate delicioase, gătite cu grijă."
|
|
/>
|
|
</div>
|
|
|
|
<div id="testimonials" data-section="testimonials">
|
|
<TestimonialCardTen
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
testimonials={[
|
|
{ id: "1", title: "Superb!", quote: "Cea mai bună mâncare din oraș.", name: "Ana Maria", role: "Local", imageSrc: "http://img.b2bpic.net/free-photo/successful-young-man-stylish-hat-relaxing-alone-cozy-cafeteria-lunch-break-looking-with-happy-expression_273609-1935.jpg?_wi=2" },
|
|
{ id: "2", title: "Recomand!", quote: "Un loc minunat pentru familie.", name: "Ion Vasile", role: "Turist", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-kids-table_23-2149213368.jpg?_wi=2" },
|
|
{ id: "3", title: "Excelent", quote: "Servire impecabilă și gustoasă.", name: "Maria Popa", role: "Client Fidel", imageSrc: "http://img.b2bpic.net/free-photo/happy-woman-enjoying-dining-table-while-communicating-with-her-husband_637285-3516.jpg?_wi=2" },
|
|
{ id: "4", title: "Minunat", quote: "Atmosferă caldă, mă simt ca acasă.", name: "Andrei S.", role: "Local", imageSrc: "http://img.b2bpic.net/free-photo/attractive-young-woman-hands-holds-two-burgers-blurred-background_169016-43765.jpg?_wi=2" },
|
|
{ id: "5", title: "Nota 10", quote: "Papanașii sunt fantastici!", name: "Elena C.", role: "Vizitator", imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-tasty-dishes_23-2147680639.jpg?_wi=2" },
|
|
]}
|
|
title="Ce spun oaspeții"
|
|
description="Am creat momente frumoase alături de mii de clienți."
|
|
/>
|
|
</div>
|
|
|
|
<div id="faq" data-section="faq">
|
|
<FaqDouble
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
faqs={[
|
|
{ id: "1", title: "Cum pot face o rezervare?", content: "Puteți rezerva telefonic sau direct prin formularul de contact de pe site." },
|
|
{ id: "2", title: "Sunteți pet-friendly?", content: "Da, suntem o locație care acceptă cu drag animalele de companie." },
|
|
{ id: "3", title: "Aveți opțiuni vegetariene?", content: "Meniul nostru include mai multe preparate vegetariene delicioase." },
|
|
]}
|
|
title="Întrebări Frecvente"
|
|
description="Tot ce trebuie să știi pentru o experiență perfectă."
|
|
faqsAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactSplitForm
|
|
useInvertedBackground={true}
|
|
title="Rezervă o masă"
|
|
description="Rezervați acum și bucurați-vă de o masă delicioasă la Five Puppies."
|
|
inputs={[
|
|
{ name: "nume", type: "text", placeholder: "Numele dumneavoastră", required: true },
|
|
{ name: "email", type: "email", placeholder: "Email", required: true },
|
|
{ name: "data", type: "date", placeholder: "Data rezervării", required: true },
|
|
]}
|
|
textarea={{ name: "mesaj", placeholder: "Mențiuni suplimentare", rows: 4 }}
|
|
imageSrc="http://img.b2bpic.net/free-photo/restaurant-with-tables-chairs-outside_1127-2018.jpg"
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterLogoEmphasis
|
|
columns={[
|
|
{ items: [{ label: "Acasă", href: "#hero" }, { label: "Despre", href: "#about" }] },
|
|
{ items: [{ label: "Meniu", href: "#menu" }, { label: "Rezervări", href: "#contact" }] },
|
|
{ items: [{ label: "Privacy", href: "#" }, { label: "Contact", href: "#contact" }] },
|
|
]}
|
|
logoText="Five Puppies"
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
} |