Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 054d284ad9 | |||
| 4e16ead415 | |||
| 19e6fa6a9e | |||
| 97ad9fa202 | |||
| b0401f47d0 |
219
src/app/page.tsx
219
src/app/page.tsx
@@ -30,21 +30,13 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "#hero"},
|
||||||
id: "#hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Menu",
|
name: "Menu", id: "#products"},
|
||||||
id: "#products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About",
|
name: "About", id: "#about"},
|
||||||
id: "#about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Reviews",
|
name: "Reviews", id: "#testimonials"},
|
||||||
id: "#testimonials",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Porkito"
|
brandName="Porkito"
|
||||||
/>
|
/>
|
||||||
@@ -53,71 +45,46 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplit
|
<HeroSplit
|
||||||
background={{
|
background={{
|
||||||
variant: "sparkles-gradient",
|
variant: "sparkles-gradient"}}
|
||||||
}}
|
|
||||||
title="Authentic Greek Street Food in Tirana"
|
title="Authentic Greek Street Food in Tirana"
|
||||||
description="Experience the legendary flavor of real Greek Souvlaki and Gyro, made fresh with love. Join us at Rruga Don Bosko."
|
description="Përjeto shijen legjendare të Souvlakit dhe Gyrosit të vërtetë Grek, të përgatitur të freskët me dashuri. Na vizito në Rruga Don Bosko."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "View Menu",
|
text: "View Menu", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Order Now",
|
text: "Order Now", href: "tel:+355696767500"},
|
||||||
href: "tel:+355696767500",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-tasty-kebab-with-tomatoes-other-dish_23-2148685493.jpg"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BzUD5g0ISqK9rZvyFw8LJ8Zul9/uploaded-1775494216471-d00x6w1b.avif"
|
||||||
imageAlt="Fresh Greek pita and gyro"
|
imageAlt="Fresh Greek pita and gyro"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/man-preparing-propose-his-lover_23-2148060327.jpg",
|
src: "http://img.b2bpic.net/free-photo/man-preparing-propose-his-lover_23-2148060327.jpg", alt: "Customer 1"},
|
||||||
alt: "Customer 1",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/brazilian-family-enjoying-meal-together_23-2151156204.jpg",
|
src: "http://img.b2bpic.net/free-photo/brazilian-family-enjoying-meal-together_23-2151156204.jpg", alt: "Customer 2"},
|
||||||
alt: "Customer 2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/pretty-blonde-woman-sitting-cafe_273609-5132.jpg",
|
src: "http://img.b2bpic.net/free-photo/pretty-blonde-woman-sitting-cafe_273609-5132.jpg", alt: "Customer 3"},
|
||||||
alt: "Customer 3",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-with-food_23-2148899055.jpg",
|
src: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-with-food_23-2148899055.jpg", alt: "Customer 4"},
|
||||||
alt: "Customer 4",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/woman-eating-restaurant_23-2148006700.jpg",
|
src: "http://img.b2bpic.net/free-photo/woman-eating-restaurant_23-2148006700.jpg", alt: "Customer 5"},
|
||||||
alt: "Customer 5",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
avatarText="Loved by 500+ happy foodies"
|
avatarText="Loved by 500+ happy foodies"
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Authentic Flavors", icon: Flame,
|
||||||
text: "Authentic Flavors",
|
|
||||||
icon: Flame,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Fresh Daily", icon: Leaf,
|
||||||
text: "Fresh Daily",
|
|
||||||
icon: Leaf,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Greek Tradition", icon: MapPin,
|
||||||
text: "Greek Tradition",
|
|
||||||
icon: MapPin,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Open Late", icon: Clock,
|
||||||
text: "Open Late",
|
|
||||||
icon: Clock,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
type: "text-icon",
|
type: "text-icon", text: "Quality Ingredients", icon: Award,
|
||||||
text: "Quality Ingredients",
|
|
||||||
icon: Award,
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
@@ -127,23 +94,17 @@ export default function LandingPage() {
|
|||||||
<SplitAbout
|
<SplitAbout
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Made with Love, Served Fresh"
|
title="I përgatitur me dashuri, i shërbyer i freskët."
|
||||||
description="At Porkito, we bring the heart of Greece to the streets of Tirana. From our signature Mayo-topped tables to the authentic Greek beats playing in the background, we offer more than just a meal—we offer an experience."
|
description="At Porkito, we bring the heart of Greece to the streets of Tirana. From our signature Mayo-topped tables to the authentic Greek beats playing in the background, we offer more than just a meal—we offer an experience."
|
||||||
bulletPoints={[
|
bulletPoints={[
|
||||||
{
|
{
|
||||||
title: "Traditional Recipes",
|
title: "Receta tradicionale", description: "Metoda autentike greke të përgatitjes."},
|
||||||
description: "Authentic Greek preparation methods.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Fresh Ingredients",
|
title: "Perberes te fresket", description: "Mishra dhe perime cilësore çdo ditë."},
|
||||||
description: "High-quality meats and vegetables daily.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Vibrant Atmosphere",
|
title: "Atmosferë e gjallë.", description: "Shijo atmosferën."},
|
||||||
description: "Enjoy the vibe with great music.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/garnish-bruschetta-fresh-ingredient-cooking-brown-table_23-2148195043.jpg"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BzUD5g0ISqK9rZvyFw8LJ8Zul9/uploaded-1775494409208-za2q1lrg.avif"
|
||||||
imageAlt="Our fresh ingredients"
|
imageAlt="Our fresh ingredients"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -157,44 +118,20 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Pita gjiro pule. ", price: "330LEK", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BzUD5g0ISqK9rZvyFw8LJ8Zul9/uploaded-1775494500390-tue3vowt.avif"},
|
||||||
name: "Chicken Souvlaki Pita",
|
|
||||||
price: "350 LEK",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/chicken-doner-with-vegetables-herbs-pita-bread_141793-57.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Pita gjiro gici.", price: "340LEK", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BzUD5g0ISqK9rZvyFw8LJ8Zul9/uploaded-1775494573880-s592bnza.avif"},
|
||||||
name: "Authentic Gyro Plate",
|
|
||||||
price: "550 LEK",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/food-arrangement-wooden-background_23-2148601636.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Pita arabe pule ", price: "450 LEK", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BzUD5g0ISqK9rZvyFw8LJ8Zul9/uploaded-1775494632160-a83ylxky.avif"},
|
||||||
name: "Feta Fries",
|
|
||||||
price: "200 LEK",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/plate-aubergine-wraps-stuffed-with-fillings_140725-8643.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Pita shish pule.", price: "340 LEK", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BzUD5g0ISqK9rZvyFw8LJ8Zul9/uploaded-1775494714509-cyqkymxh.avif"},
|
||||||
name: "Signature Pita Wrap",
|
|
||||||
price: "400 LEK",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/creative-composition-tasty-food_23-2148949081.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Pita llukaniko gici", price: "340 LEK", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BzUD5g0ISqK9rZvyFw8LJ8Zul9/uploaded-1775495358386-2soi3cgl.avif"},
|
||||||
name: "Mixed Meat Platter",
|
|
||||||
price: "750 LEK",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-chicken-leg-topped-with-sauce-served-with-lettuce-rocket-salad-grilled-pita-tomato_141793-2234.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", name: "Hamburger+patate+sos ", price: "470 LEK", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BzUD5g0ISqK9rZvyFw8LJ8Zul9/uploaded-1775495482501-8c9eess7.avif"},
|
||||||
name: "Greek Dessert",
|
|
||||||
price: "250 LEK",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portioned-russian-napoleon-cake-plate_140725-7048.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Our Menu"
|
title="Menu"
|
||||||
description="The best pitas, gyros, and authentic street food snacks in town."
|
description="Pitat, gyros dhe snack-et autentike rrugore më të mira në qytet."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -206,48 +143,23 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Albix 90", role: "The first real greek souvlaki in tirana, but what i like is they offer Mayo in the table, all tasty and clean, and the greek music that i love.", company: "Reviewer", rating: 5,
|
||||||
name: "Albix 90",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BzUD5g0ISqK9rZvyFw8LJ8Zul9/uploaded-1775495855790-69ywj4o2.avif"},
|
||||||
role: "Local Guide",
|
|
||||||
company: "Reviewer",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/man-preparing-propose-his-lover_23-2148060327.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Dominique Wagner", role: "Our go-to late night snack and place to get the best pita/gyro! Somehow they're so difference from all of the rest as if it's made with love or something! Such a great bang for your buck", company: "Reviewer", rating: 5,
|
||||||
name: "Dominique Wagner",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BzUD5g0ISqK9rZvyFw8LJ8Zul9/uploaded-1775495909032-3m8kbmnn.avif"},
|
||||||
role: "Foodie",
|
|
||||||
company: "Reviewer",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/brazilian-family-enjoying-meal-together_23-2151156204.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Julia Repchenko", role: "Regular", company: "Reviewer", rating: 4,
|
||||||
name: "Julia Repchenko",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BzUD5g0ISqK9rZvyFw8LJ8Zul9/uploaded-1775496071642-rew44vm5.avif"},
|
||||||
role: "Regular",
|
|
||||||
company: "Reviewer",
|
|
||||||
rating: 4,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/pretty-blonde-woman-sitting-cafe_273609-5132.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Local Patron", role: "Visitor", company: "Reviewer", rating: 5,
|
||||||
name: "Local Patron",
|
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-with-food_23-2148899055.jpg"},
|
||||||
role: "Visitor",
|
|
||||||
company: "Reviewer",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-with-food_23-2148899055.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Late Night Snacker", role: "Frequent", company: "Reviewer", rating: 5,
|
||||||
name: "Late Night Snacker",
|
imageSrc: "http://img.b2bpic.net/free-photo/woman-eating-restaurant_23-2148006700.jpg"},
|
||||||
role: "Frequent",
|
|
||||||
company: "Reviewer",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-eating-restaurant_23-2148006700.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="What Our Customers Say"
|
title="Cfare thone klientet tane."
|
||||||
description="Join our community of happy food lovers in Tirana."
|
description="Bashkohu me komunitetin tonë të dashamirëve të ushqimit të lumtur në Tiranë."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -255,20 +167,15 @@ export default function LandingPage() {
|
|||||||
<ContactCTA
|
<ContactCTA
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "sparkles-gradient",
|
variant: "sparkles-gradient"}}
|
||||||
}}
|
tag="Vizitoni Porkito"
|
||||||
tag="Visit Us"
|
title="Gati për një shije autentike?"
|
||||||
title="Ready for a Taste?"
|
description="Jemi hapur deri në 2 të mëngjesit! Na vizitoni në Rrugën Don Bosko ose porosisni për 'takeout' dhe dërgesë."
|
||||||
description="We are open until 2 AM! Come visit us at Rruga Don Bosko or order for takeout and delivery."
|
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Call Now",
|
text: "Na Telefononi", href: "tel:+355696767500"},
|
||||||
href: "tel:+355696767500",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Get Directions",
|
text: "Merrni Drejtimin", href: "#footer"},
|
||||||
href: "#footer",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -278,33 +185,21 @@ export default function LandingPage() {
|
|||||||
logoText="Porkito"
|
logoText="Porkito"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Menu",
|
title: "Menu", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Souvlaki",
|
label: "Souvlaki", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Gyro",
|
label: "Gyro", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Sides",
|
label: "Shtesa", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Contact",
|
title: "Kontakt", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Rruga Don Bosko, Tirana",
|
label: "Rruga Don Bosko, Tiranë", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "+355 69 676 7500",
|
label: "+355 69 676 7500", href: "tel:+355696767500"},
|
||||||
href: "tel:+355696767500",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user