Merge version_1 into main #2
220
src/app/page.tsx
220
src/app/page.tsx
@@ -9,7 +9,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import TestimonialCardTwelve from '@/components/sections/testimonial/TestimonialCardTwelve';
|
||||
import { Facebook, Instagram } from "lucide-react";
|
||||
import { Facebook, Instagram, Martini, ShoppingBag, Truck } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -29,106 +29,49 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Menu",
|
||||
id: "#menu",
|
||||
},
|
||||
{
|
||||
name: "Chi Siamo",
|
||||
id: "#about",
|
||||
},
|
||||
{
|
||||
name: "Dove Siamo",
|
||||
id: "#contact",
|
||||
},
|
||||
{ name: "Menu", id: "#menu" },
|
||||
{ name: "Chi Siamo", id: "#about" },
|
||||
{ name: "Dove Siamo", id: "#contact" },
|
||||
]}
|
||||
brandName="BirCock"
|
||||
button={{
|
||||
text: "Prenota ora",
|
||||
href: "#contact",
|
||||
}}
|
||||
text: "Prenota ora", href: "#contact"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitKpi
|
||||
background={{
|
||||
variant: "gradient-bars",
|
||||
}}
|
||||
variant: "gradient-bars"}}
|
||||
title="BIRCOCK"
|
||||
description="Beer, Food & Cocktails. L'anima del pub incontra l'eleganza dello speakeasy."
|
||||
kpis={[
|
||||
{
|
||||
value: "18:00",
|
||||
label: "Opening",
|
||||
},
|
||||
{
|
||||
value: "4.5/5",
|
||||
label: "Google Rating",
|
||||
},
|
||||
{
|
||||
value: "Lamezia",
|
||||
label: "Location",
|
||||
},
|
||||
{ value: "18:00", label: "Opening" },
|
||||
{ value: "4.5/5", label: "Google Rating" },
|
||||
{ value: "Lamezia", label: "Location" },
|
||||
]}
|
||||
enableKpiAnimation={true}
|
||||
buttons={[
|
||||
{
|
||||
text: "Scopri il Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
{
|
||||
text: "Indicazioni",
|
||||
href: "#contact",
|
||||
},
|
||||
{ text: "Scopri il Menu", href: "#menu" },
|
||||
{ text: "Indicazioni", href: "#contact" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/berry-cocktail-shot_140725-9317.jpg"
|
||||
imageAlt="BirCock Speakeasy Bar"
|
||||
mediaAnimation="blur-reveal"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-man-holding-drink_23-2149119680.jpg",
|
||||
alt: "Guest 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-friends-sitting-with-beer_23-2148872464.jpg",
|
||||
alt: "Guest 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/side-view-man-sitting-bar-counter_23-2147861962.jpg",
|
||||
alt: "Guest 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/chilling-couple-with-wineglasses_23-2147736712.jpg",
|
||||
alt: "Guest 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/friends-holding-drinks-while-listening-their-friend-playing-guitar_23-2149187038.jpg",
|
||||
alt: "Guest 5",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-man-holding-drink_23-2149119680.jpg", alt: "Guest 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/close-up-friends-sitting-with-beer_23-2148872464.jpg", alt: "Guest 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/side-view-man-sitting-bar-counter_23-2147861962.jpg", alt: "Guest 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/chilling-couple-with-wineglasses_23-2147736712.jpg", alt: "Guest 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/friends-holding-drinks-while-listening-their-friend-playing-guitar_23-2149187038.jpg", alt: "Guest 5" },
|
||||
]}
|
||||
avatarText="Oltre 500 clienti soddisfatti"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Drink Premium",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Atmosfera Unica",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Live Music",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Cucina Artigianale",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Selezione Whiskey",
|
||||
},
|
||||
{ type: "text", text: "Drink Premium" },
|
||||
{ type: "text", text: "Atmosfera Unica" },
|
||||
{ type: "text", text: "Live Music" },
|
||||
{ type: "text", text: "Cucina Artigianale" },
|
||||
{ type: "text", text: "Selezione Whiskey" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -139,26 +82,14 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Consumazione sul posto",
|
||||
description: "Goditi il tuo cocktail in un'atmosfera unica.",
|
||||
buttonIcon: "Martini",
|
||||
buttonHref: "#contact",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-foods-cocktails-tall-glass_23-2149064117.jpg?_wi=1",
|
||||
},
|
||||
title: "Consumazione sul posto", description: "Goditi il tuo cocktail in un'atmosfera unica.", buttonIcon: Martini,
|
||||
buttonHref: "#contact", imageSrc: "http://img.b2bpic.net/free-photo/close-up-foods-cocktails-tall-glass_23-2149064117.jpg"},
|
||||
{
|
||||
title: "Ritiro all'esterno",
|
||||
description: "Passa a trovarci e porta via il tuo gusto.",
|
||||
buttonIcon: "ShoppingBag",
|
||||
buttonHref: "#contact",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-hand-pouring-sesame-seeds-beef-burger-with-salad-bacon_23-2148784492.jpg?_wi=1",
|
||||
},
|
||||
title: "Ritiro all'esterno", description: "Passa a trovarci e porta via il tuo gusto.", buttonIcon: ShoppingBag,
|
||||
buttonHref: "#contact", imageSrc: "http://img.b2bpic.net/free-photo/front-view-hand-pouring-sesame-seeds-beef-burger-with-salad-bacon_23-2148784492.jpg"},
|
||||
{
|
||||
title: "Consegna a domicilio",
|
||||
description: "La qualità BirCock arriva direttamente a casa tua.",
|
||||
buttonIcon: "Truck",
|
||||
buttonHref: "#contact",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-bearded-tattooed-hipster-male-manufacturer-presenting-craft-beer-microbrewery_613910-13529.jpg?_wi=1",
|
||||
},
|
||||
title: "Consegna a domicilio", description: "La qualità BirCock arriva direttamente a casa tua.", buttonIcon: Truck,
|
||||
buttonHref: "#contact", imageSrc: "http://img.b2bpic.net/free-photo/black-bearded-tattooed-hipster-male-manufacturer-presenting-craft-beer-microbrewery_613910-13529.jpg"},
|
||||
]}
|
||||
title="I nostri Servizi"
|
||||
description="Vivete l'esperienza BirCock come preferite."
|
||||
@@ -167,54 +98,22 @@ export default function LandingPage() {
|
||||
|
||||
<div id="menu" data-section="menu">
|
||||
<ProductCardThree
|
||||
animationType="blur-reveal"
|
||||
textboxLayout="split"
|
||||
gridVariant="bento-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "BirCock Burger",
|
||||
price: "14€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-hand-pouring-sesame-seeds-beef-burger-with-salad-bacon_23-2148784492.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Artisan IPA",
|
||||
price: "8€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-bearded-tattooed-hipster-male-manufacturer-presenting-craft-beer-microbrewery_613910-13529.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Signature Negroni",
|
||||
price: "10€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-foods-cocktails-tall-glass_23-2149064117.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Antipasto Mix",
|
||||
price: "12€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-tasty-local-food-assortment_23-2148833801.jpg",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Whiskey Selection",
|
||||
price: "15€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-mezcal-drink-with-maguey-worm_23-2151267847.jpg",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Dessert Cuore Caldo",
|
||||
price: "7€",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-little-cakes-with-chocolate-bars-strawberries-dark-background-pie-chocolate-cocoa-cake-sweet-tea_140725-116289.jpg",
|
||||
},
|
||||
{ id: "p1", name: "BirCock Burger", price: "14€", imageSrc: "http://img.b2bpic.net/free-photo/front-view-hand-pouring-sesame-seeds-beef-burger-with-salad-bacon_23-2148784492.jpg" },
|
||||
{ id: "p2", name: "Artisan IPA", price: "8€", imageSrc: "http://img.b2bpic.net/free-photo/black-bearded-tattooed-hipster-male-manufacturer-presenting-craft-beer-microbrewery_613910-13529.jpg" },
|
||||
{ id: "p3", name: "Signature Negroni", price: "10€", imageSrc: "http://img.b2bpic.net/free-photo/close-up-foods-cocktails-tall-glass_23-2149064117.jpg" },
|
||||
{ id: "p4", name: "Antipasto Mix", price: "12€", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-tasty-local-food-assortment_23-2148833801.jpg" },
|
||||
{ id: "p5", name: "Whiskey Selection", price: "15€", imageSrc: "http://img.b2bpic.net/free-photo/still-life-mezcal-drink-with-maguey-worm_23-2151267847.jpg" },
|
||||
{ id: "p6", name: "Dessert Cuore Caldo", price: "7€", imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-little-cakes-with-chocolate-bars-strawberries-dark-background-pie-chocolate-cocoa-cake-sweet-tea_140725-116289.jpg" },
|
||||
]}
|
||||
title="Cosa si beve, cosa si mangia"
|
||||
description="Ogni piatto è pensato per esaltare il vostro tempo."
|
||||
buttons={[
|
||||
{
|
||||
text: "Scarica il Menu",
|
||||
href: "https://drive.google.com",
|
||||
},
|
||||
{ text: "Scarica il Menu", href: "https://drive.google.com" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -223,31 +122,11 @@ export default function LandingPage() {
|
||||
<TestimonialCardTwelve
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Marco V.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-holding-drink_23-2149119680.jpg",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "Giulia R.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-friends-sitting-with-beer_23-2148872464.jpg",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Alessandro B.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-sitting-bar-counter_23-2147861962.jpg",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Sofia L.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chilling-couple-with-wineglasses_23-2147736712.jpg",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Davide P.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-holding-drinks-while-listening-their-friend-playing-guitar_23-2149187038.jpg",
|
||||
},
|
||||
{ id: "t1", name: "Marco V.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-man-holding-drink_23-2149119680.jpg" },
|
||||
{ id: "t2", name: "Giulia R.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-friends-sitting-with-beer_23-2148872464.jpg" },
|
||||
{ id: "t3", name: "Alessandro B.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-man-sitting-bar-counter_23-2147861962.jpg" },
|
||||
{ id: "t4", name: "Sofia L.", imageSrc: "http://img.b2bpic.net/free-photo/chilling-couple-with-wineglasses_23-2147736712.jpg" },
|
||||
{ id: "t5", name: "Davide P.", imageSrc: "http://img.b2bpic.net/free-photo/friends-holding-drinks-while-listening-their-friend-playing-guitar_23-2149187038.jpg" },
|
||||
]}
|
||||
cardTitle="Cosa dicono di noi"
|
||||
cardTag="Recensioni Google"
|
||||
@@ -262,12 +141,7 @@ export default function LandingPage() {
|
||||
title="Partner e Fornitori"
|
||||
description="Collaboriamo solo con i migliori artigiani locali per garantire qualità superiore."
|
||||
names={[
|
||||
"Birrificio Artigiano",
|
||||
"Distilleria Premium",
|
||||
"Macelleria Locale",
|
||||
"Azienda Agricola Km0",
|
||||
"Panificio Tradizionale",
|
||||
]}
|
||||
"Birrificio Artigiano", "Distilleria Premium", "Macelleria Locale", "Azienda Agricola Km0", "Panificio Tradizionale"]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -276,16 +150,8 @@ export default function LandingPage() {
|
||||
logoText="BirCock"
|
||||
copyrightText="© 2025 | BirCock Speakeasy Pub"
|
||||
socialLinks={[
|
||||
{
|
||||
icon: Instagram,
|
||||
href: "#",
|
||||
ariaLabel: "Instagram",
|
||||
},
|
||||
{
|
||||
icon: Facebook,
|
||||
href: "#",
|
||||
ariaLabel: "Facebook",
|
||||
},
|
||||
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
|
||||
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user