From d764e1497498273d315936d8bf245b574d3abaa3 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 15:33:43 +0000 Subject: [PATCH 1/2] Update src/app/about/page.tsx --- src/app/about/page.tsx | 96 ++++++++++++++++-------------------------- 1 file changed, 36 insertions(+), 60 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 1b2afb2..f37970b 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -6,21 +6,20 @@ import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCa import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; import Link from "next/link"; -import { Flame, Users, Star } from "lucide-react"; +import { Flame, Users, Star, Smile, Cake, Armchair, ParkingCircle, User, Zap, Heart, Shield, Award, Music } from "lucide-react"; export default function AboutPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "Menu", id: "menu" }, - { name: "About", id: "about" }, + { name: "Home", id: "/" }, + { name: "Menu", id: "/menu" }, + { name: "About", id: "/about" }, { name: "Gallery", id: "gallery" }, { name: "Reviews", id: "reviews" }, ]; const footerColumns = [ { - title: "Restaurant", - items: [ + title: "Restaurant", items: [ { label: "Menu", href: "/menu" }, { label: "Gallery", href: "/gallery" }, { label: "About Us", href: "/about" }, @@ -28,8 +27,7 @@ export default function AboutPage() { ], }, { - title: "Experience", - items: [ + title: "Experience", items: [ { label: "Reviews", href: "#reviews" }, { label: "Reservations", href: "#contact" }, { label: "Special Offers", href: "#" }, @@ -37,8 +35,7 @@ export default function AboutPage() { ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Phone", href: "tel:+998" }, { label: "Email", href: "mailto:info@padisah.uz" }, { label: "Instagram", href: "https://instagram.com" }, @@ -46,8 +43,7 @@ export default function AboutPage() { ], }, { - title: "Hours", - items: [ + title: "Hours", items: [ { label: "Mon-Sun: 12:00 PM - 11:00 PM", href: "#" }, { label: "Tashkent, Uzbekistan", href: "#" }, { label: "Open for Events", href: "#contact" }, @@ -85,7 +81,7 @@ export default function AboutPage() { description="Chef's Personal Touch" subdescription="Istanbul-Trained Culinary Master" icon={Flame} - imageSrc="http://img.b2bpic.net/free-photo/cook-standing-with-big-bowl-salad_23-2148040233.jpg?_wi=2" + imageSrc="http://img.b2bpic.net/free-photo/cook-standing-with-big-bowl-salad_23-2148040233.jpg" imageAlt="Turkish Chef" mediaAnimation="slide-up" useInvertedBackground={false} @@ -101,28 +97,20 @@ export default function AboutPage() { tagAnimation="slide-up" features={[ { - icon: "Smile", - title: "Kids Play Area", - description: - "Safe two-story play house where children enjoy while parents relax with great food", - }, + icon: Smile, + title: "Kids Play Area", description: + "Safe two-story play house where children enjoy while parents relax with great food"}, { - icon: "Cake", - title: "Birthday Celebrations", - description: - "Make your special day unforgettable with our celebration packages and surprises", - }, + icon: Cake, + title: "Birthday Celebrations", description: + "Make your special day unforgettable with our celebration packages and surprises"}, { - icon: "Armchair", - title: "Spacious Dining", - description: - "Large comfortable seating perfect for families, groups and special gatherings", - }, + icon: Armchair, + title: "Spacious Dining", description: + "Large comfortable seating perfect for families, groups and special gatherings"}, { - icon: "ParkingCircle", - title: "Free Parking", - description: "Easy access with plenty of parking space for all our guests", - }, + icon: ParkingCircle, + title: "Free Parking", description: "Easy access with plenty of parking space for all our guests"}, ]} animationType="slide-up" textboxLayout="default" @@ -139,39 +127,27 @@ export default function AboutPage() { tagAnimation="slide-up" features={[ { - icon: "User", - title: "Authentic Turkish Chef", - description: - "True Turkish recipes and techniques prepared by a master chef from Istanbul", - }, + icon: User, + title: "Authentic Turkish Chef", description: + "True Turkish recipes and techniques prepared by a master chef from Istanbul"}, { - icon: "Zap", - title: "Generous Portions", - description: - "Guests love our big portions and exceptional value for premium quality food", - }, + icon: Zap, + title: "Generous Portions", description: + "Guests love our big portions and exceptional value for premium quality food"}, { - icon: "Heart", - title: "Family Friendly", - description: "Dedicated kids area and spacious seating perfect for family moments", - }, + icon: Heart, + title: "Family Friendly", description: "Dedicated kids area and spacious seating perfect for family moments"}, { - icon: "Shield", - title: "Clean & Cozy", - description: - "Comfortable and welcoming environment that feels like home away from home", - }, + icon: Shield, + title: "Clean & Cozy", description: + "Comfortable and welcoming environment that feels like home away from home"}, { - icon: "Award", - title: "Personal Chef Service", - description: - "The chef comes personally to check on guests and ensure perfect dining experience", - }, + icon: Award, + title: "Personal Chef Service", description: + "The chef comes personally to check on guests and ensure perfect dining experience"}, { - icon: "Music", - title: "Warm Hospitality", - description: "Experience genuine Turkish hospitality with attentive and friendly service", - }, + icon: Music, + title: "Warm Hospitality", description: "Experience genuine Turkish hospitality with attentive and friendly service"}, ]} animationType="slide-up" textboxLayout="default" -- 2.49.1 From 94fd5eee80061615d8c273c81b87d4aaeafd563d Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 15:33:43 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 334 +++++++++++++---------------------------------- 1 file changed, 91 insertions(+), 243 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index b887e27..fa409a1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -12,20 +12,19 @@ import BlogCardThree from "@/components/sections/blog/BlogCardThree"; import ContactFaq from "@/components/sections/contact/ContactFaq"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; import Link from "next/link"; -import { Crown, Utensils, Heart, Chef, Flame, Smile, Cake, Armchair, ParkingCircle, User, Zap, Shield, Award, Music, Quote, Image, Calendar } from "lucide-react"; +import { Crown, Utensils, Heart, Flame, Smile, Cake, Armchair, ParkingCircle, User, Zap, Shield, Award, Music, Quote, Image, Calendar } from "lucide-react"; const navItems = [ { name: "Home", id: "/" }, { name: "Menu", id: "/menu" }, - { name: "About", id: "about" }, + { name: "About", id: "/about" }, { name: "Gallery", id: "gallery" }, { name: "Reviews", id: "reviews" }, ]; const footerColumns = [ { - title: "Restaurant", - items: [ + title: "Restaurant", items: [ { label: "Menu", href: "/menu" }, { label: "Gallery", href: "#gallery" }, { label: "About Us", href: "#about" }, @@ -33,8 +32,7 @@ const footerColumns = [ ], }, { - title: "Experience", - items: [ + title: "Experience", items: [ { label: "Reviews", href: "#reviews" }, { label: "Reservations", href: "#contact" }, { label: "Special Offers", href: "#" }, @@ -42,8 +40,7 @@ const footerColumns = [ ], }, { - title: "Contact", - items: [ + title: "Contact", items: [ { label: "Phone", href: "tel:+998" }, { label: "Email", href: "mailto:info@padisah.uz" }, { label: "Instagram", href: "https://instagram.com" }, @@ -51,8 +48,7 @@ const footerColumns = [ ], }, { - title: "Hours", - items: [ + title: "Hours", items: [ { label: "Mon-Sun: 12:00 PM - 11:00 PM", href: "#" }, { label: "Tashkent, Uzbekistan", href: "#" }, { label: "Open for Events", href: "#contact" }, @@ -92,46 +88,28 @@ export default function HomePage() { background={{ variant: "plain" }} buttons={[ { text: "Reserve a Table", href: "#contact" }, - { text: "Explore the Menu", href: "/menu" }, + { text: "Explore the Menu", href: "#menu" }, ]} buttonAnimation="slide-up" carouselItems={[ { - id: "hero-1", - imageSrc: - "http://img.b2bpic.net/free-photo/close-up-chef-smelling-dish-after-cooking_329181-16138.jpg", - imageAlt: "Turkish chef grilling kebab cinematic", - }, + id: "hero-1", imageSrc: + "http://img.b2bpic.net/free-photo/close-up-chef-smelling-dish-after-cooking_329181-16138.jpg", imageAlt: "Turkish chef grilling kebab cinematic"}, { - id: "hero-2", - imageSrc: - "http://img.b2bpic.net/free-photo/mixed-grilled-foods-with-meat-vegetables_114579-3152.jpg?_wi=1", - imageAlt: "adana kebab Turkish grilled meat platter", - }, + id: "hero-2", imageSrc: + "http://img.b2bpic.net/free-photo/mixed-grilled-foods-with-meat-vegetables_114579-3152.jpg", imageAlt: "adana kebab Turkish grilled meat platter"}, { - id: "hero-3", - imageSrc: - "http://img.b2bpic.net/free-photo/meat-sage-with-eggplant-potatoes-cooked-charcoal_140725-7391.jpg?_wi=1", - imageAlt: "mixed grill platter lamb chicken kebab", - }, + id: "hero-3", imageSrc: + "http://img.b2bpic.net/free-photo/meat-sage-with-eggplant-potatoes-cooked-charcoal_140725-7391.jpg", imageAlt: "mixed grill platter lamb chicken kebab"}, { - id: "hero-4", - imageSrc: - "http://img.b2bpic.net/free-photo/cold-apetizers-pickles-mangal-salad-eggplant-rolls-cheese-plate-green-salad-side-view_141793-3715.jpg?_wi=1", - imageAlt: "Turkish meze appetizers fresh starters", - }, + id: "hero-4", imageSrc: + "http://img.b2bpic.net/free-photo/cold-apetizers-pickles-mangal-salad-eggplant-rolls-cheese-plate-green-salad-side-view_141793-3715.jpg", imageAlt: "Turkish meze appetizers fresh starters"}, { - id: "hero-5", - imageSrc: - "http://img.b2bpic.net/free-photo/top-view-baklava-with-cup-tea-turkish-delight-wooden-plank_176474-3290.jpg?_wi=1", - imageAlt: "Turkish baklava dessert traditional honey", - }, + id: "hero-5", imageSrc: + "http://img.b2bpic.net/free-photo/top-view-baklava-with-cup-tea-turkish-delight-wooden-plank_176474-3290.jpg", imageAlt: "Turkish baklava dessert traditional honey"}, { - id: "hero-6", - imageSrc: - "http://img.b2bpic.net/free-photo/lamps-arab-restaurant_23-2147794377.jpg", - imageAlt: "Elegant restaurant interior", - }, + id: "hero-6", imageSrc: + "http://img.b2bpic.net/free-photo/lamps-arab-restaurant_23-2147794377.jpg", imageAlt: "Elegant restaurant interior"}, ]} autoPlay={true} autoPlayInterval={4000} @@ -146,14 +124,7 @@ export default function HomePage() { tagIcon={Heart} tagAnimation="slide-up" names={[ - "Family Dinners", - "Celebrations", - "Corporate Events", - "Special Occasions", - "Authentic Turkish", - "Five Star Dining", - "Warm Hospitality", - ]} + "Family Dinners", "Celebrations", "Corporate Events", "Special Occasions", "Authentic Turkish", "Five Star Dining", "Warm Hospitality"]} textboxLayout="default" useInvertedBackground={false} speed={40} @@ -170,49 +141,21 @@ export default function HomePage() { tagAnimation="slide-up" products={[ { - id: "1", - brand: "Padisah", - name: "Adana Kebab", - price: "Authentic", - rating: 5, - reviewCount: "180+", - imageSrc: - "http://img.b2bpic.net/free-photo/mixed-grilled-foods-with-meat-vegetables_114579-3152.jpg?_wi=2", - imageAlt: "Adana Kebab", - }, + id: "1", brand: "Padisah", name: "Adana Kebab", price: "Authentic", rating: 5, + reviewCount: "180+", imageSrc: + "http://img.b2bpic.net/free-photo/mixed-grilled-foods-with-meat-vegetables_114579-3152.jpg", imageAlt: "Adana Kebab"}, { - id: "2", - brand: "Padisah", - name: "Mixed Grill Platter", - price: "Feast", - rating: 5, - reviewCount: "215+", - imageSrc: - "http://img.b2bpic.net/free-photo/meat-sage-with-eggplant-potatoes-cooked-charcoal_140725-7391.jpg?_wi=2", - imageAlt: "Mixed Grill Platter", - }, + id: "2", brand: "Padisah", name: "Mixed Grill Platter", price: "Feast", rating: 5, + reviewCount: "215+", imageSrc: + "http://img.b2bpic.net/free-photo/meat-sage-with-eggplant-potatoes-cooked-charcoal_140725-7391.jpg", imageAlt: "Mixed Grill Platter"}, { - id: "3", - brand: "Padisah", - name: "Turkish Meze", - price: "Starters", - rating: 5, - reviewCount: "195+", - imageSrc: - "http://img.b2bpic.net/free-photo/cold-apetizers-pickles-mangal-salad-eggplant-rolls-cheese-plate-green-salad-side-view_141793-3715.jpg?_wi=2", - imageAlt: "Turkish Meze", - }, + id: "3", brand: "Padisah", name: "Turkish Meze", price: "Starters", rating: 5, + reviewCount: "195+", imageSrc: + "http://img.b2bpic.net/free-photo/cold-apetizers-pickles-mangal-salad-eggplant-rolls-cheese-plate-green-salad-side-view_141793-3715.jpg", imageAlt: "Turkish Meze"}, { - id: "4", - brand: "Padisah", - name: "Baklava & Tea", - price: "Desserts", - rating: 5, - reviewCount: "160+", - imageSrc: - "http://img.b2bpic.net/free-photo/top-view-baklava-with-cup-tea-turkish-delight-wooden-plank_176474-3290.jpg?_wi=2", - imageAlt: "Baklava and Traditional Tea", - }, + id: "4", brand: "Padisah", name: "Baklava & Tea", price: "Desserts", rating: 5, + reviewCount: "160+", imageSrc: + "http://img.b2bpic.net/free-photo/top-view-baklava-with-cup-tea-turkish-delight-wooden-plank_176474-3290.jpg", imageAlt: "Baklava and Traditional Tea"}, ]} gridVariant="uniform-all-items-equal" animationType="slide-up" @@ -224,13 +167,13 @@ export default function HomePage() {