Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e85762e596 | |||
| 783075ea57 | |||
| ef11c55474 |
175
src/app/page.tsx
175
src/app/page.tsx
@@ -7,7 +7,7 @@ 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 NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
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';
|
||||
@@ -28,20 +28,18 @@ export default function LandingPage() {
|
||||
headingFontWeight="bold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav" className="fixed top-0 w-full z-50 bg-white/80 backdrop-blur-md transition-all duration-300">
|
||||
<NavbarStyleFullscreen
|
||||
<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"},
|
||||
{ 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>
|
||||
|
||||
@@ -53,51 +51,28 @@ export default function LandingPage() {
|
||||
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"},
|
||||
{ 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"},
|
||||
{ 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"},
|
||||
{ type: "text", text: "Tradițional" },
|
||||
{ type: "text", text: "Proaspăt" },
|
||||
{ type: "text", text: "Primitor" },
|
||||
{ type: "text", text: "Autentic" },
|
||||
{ type: "text", text: "Cozzy" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -120,12 +95,9 @@ export default function LandingPage() {
|
||||
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: "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."
|
||||
@@ -139,24 +111,12 @@ export default function LandingPage() {
|
||||
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"},
|
||||
{ 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ă."
|
||||
@@ -168,16 +128,11 @@ export default function LandingPage() {
|
||||
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"},
|
||||
{ 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."
|
||||
@@ -189,12 +144,9 @@ export default function LandingPage() {
|
||||
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."},
|
||||
{ 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ă."
|
||||
@@ -208,19 +160,11 @@ export default function LandingPage() {
|
||||
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,
|
||||
},
|
||||
{ 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,
|
||||
}}
|
||||
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>
|
||||
@@ -228,30 +172,9 @@ export default function LandingPage() {
|
||||
<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"},
|
||||
],
|
||||
},
|
||||
{ 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"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user