diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 8bfaa82..8f0cbe1 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -1,8 +1,10 @@
"use client";
+import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import AboutMetric from '@/components/sections/about/AboutMetric';
+import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { Utensils, Users, Star, MapPin } from "lucide-react";
@@ -12,7 +14,7 @@ export default function AboutPage() {
{ name: "Menu", id: "/menu" },
{ name: "Gallery", id: "/gallery" },
{ name: "About", id: "/about" },
- { name: "Contact", id: "/contact" }
+ { name: "Contact", id: "/contact" },
];
const footerColumns = [
@@ -20,49 +22,30 @@ export default function AboutPage() {
items: [
{ label: "Home", href: "/" },
{ label: "Menu", href: "/menu" },
- { label: "Gallery", href: "/gallery" }
- ]
+ { label: "Gallery", href: "/gallery" },
+ ],
},
{
items: [
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "/contact" },
- { label: "Order Online", href: "#" }
- ]
+ { label: "Order Online", href: "#" },
+ ],
},
{
items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "WhatsApp", href: "https://whatsapp.com" },
- { label: "Phone", href: "tel:+91XXXXXXXXXX" }
- ]
+ { label: "Phone", href: "tel:+91XXXXXXXXXX" },
+ ],
},
{
items: [
{ label: "Opening Hours", href: "#" },
{ label: "Privacy Policy", href: "#" },
- { label: "Terms & Conditions", href: "#" }
- ]
- }
- ];
-
- const metrics = [
- {
- icon: Utensils,
- label: "Years of Experience", value: "8+"
+ { label: "Terms & Conditions", href: "#" },
+ ],
},
- {
- icon: Users,
- label: "Happy Customers", value: "2000+"
- },
- {
- icon: Star,
- label: "Customer Rating", value: "4.8★"
- },
- {
- icon: MapPin,
- label: "Locations", value: "1"
- }
];
return (
@@ -90,16 +73,54 @@ export default function AboutPage() {
+
+
+
+
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index 5c7f0d6..cd317f8 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -1,12 +1,52 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
-import ContactSplit from "@/components/sections/contact/ContactSplit";
-import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
+import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
+import ContactSplit from '@/components/sections/contact/ContactSplit';
+import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { MessageSquare } from "lucide-react";
+import Link from "next/link";
export default function ContactPage() {
+ const navItems = [
+ { name: "Home", id: "/" },
+ { name: "Menu", id: "/menu" },
+ { name: "Gallery", id: "/gallery" },
+ { name: "About", id: "/about" },
+ { name: "Contact", id: "/contact" },
+ ];
+
+ const footerColumns = [
+ {
+ items: [
+ { label: "Home", href: "/" },
+ { label: "Menu", href: "/menu" },
+ { label: "Gallery", href: "/gallery" },
+ ],
+ },
+ {
+ items: [
+ { label: "About Us", href: "/about" },
+ { label: "Contact", href: "/contact" },
+ { label: "Order Online", href: "#" },
+ ],
+ },
+ {
+ items: [
+ { label: "Instagram", href: "https://instagram.com" },
+ { label: "WhatsApp", href: "https://whatsapp.com" },
+ { label: "Phone", href: "tel:+91XXXXXXXXXX" },
+ ],
+ },
+ {
+ items: [
+ { label: "Opening Hours", href: "#" },
+ { label: "Privacy Policy", href: "#" },
+ { label: "Terms & Conditions", href: "#" },
+ ],
+ },
+ ];
+
return (
diff --git a/src/app/gallery/page.tsx b/src/app/gallery/page.tsx
index bebe02f..7d0b269 100644
--- a/src/app/gallery/page.tsx
+++ b/src/app/gallery/page.tsx
@@ -1,5 +1,6 @@
"use client";
+import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
@@ -11,7 +12,7 @@ export default function GalleryPage() {
{ name: "Menu", id: "/menu" },
{ name: "Gallery", id: "/gallery" },
{ name: "About", id: "/about" },
- { name: "Contact", id: "/contact" }
+ { name: "Contact", id: "/contact" },
];
const footerColumns = [
@@ -19,51 +20,51 @@ export default function GalleryPage() {
items: [
{ label: "Home", href: "/" },
{ label: "Menu", href: "/menu" },
- { label: "Gallery", href: "/gallery" }
- ]
+ { label: "Gallery", href: "/gallery" },
+ ],
},
{
items: [
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "/contact" },
- { label: "Order Online", href: "#" }
- ]
+ { label: "Order Online", href: "#" },
+ ],
},
{
items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "WhatsApp", href: "https://whatsapp.com" },
- { label: "Phone", href: "tel:+91XXXXXXXXXX" }
- ]
+ { label: "Phone", href: "tel:+91XXXXXXXXXX" },
+ ],
},
{
items: [
{ label: "Opening Hours", href: "#" },
{ label: "Privacy Policy", href: "#" },
- { label: "Terms & Conditions", href: "#" }
- ]
- }
+ { label: "Terms & Conditions", href: "#" },
+ ],
+ },
];
const galleryProducts = [
{
- id: "gallery-burgers", name: "Juicy Burgers", price: "Chef's Special", imageSrc: "http://img.b2bpic.net/free-photo/high-protein-meal-burgers-close-up-detail_23-2149098869.jpg", imageAlt: "assorted burgers food photography"
+ id: "gallery-burger", name: "Juicy Burgers", price: "Chef's Special", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-delicious-burgers-plate_23-2149897390.jpg", imageAlt: "assorted burgers food photography"
},
{
- id: "gallery-biryani", name: "Fragrant Biryani", price: "Main Course", imageSrc: "http://img.b2bpic.net/free-photo/top-view-cooked-rice-with-seasonings-dark-surface-meal-dark-dish-east_140725-82272.jpg", imageAlt: "biryani rice dish elegant plating"
+ id: "gallery-biryani", name: "Fragrant Biryani", price: "Main Course", imageSrc: "http://img.b2bpic.net/free-photo/pilaf-with-sabzi-with-herbs_140725-6298.jpg", imageAlt: "biryani rice dish elegant plating"
},
{
- id: "gallery-drinks", name: "Refreshing Drinks", price: "Beverages", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-friends-with-delicious-kombucha-outdoors_23-2150553725.jpg", imageAlt: "beverage selection drinks display"
+ id: "gallery-drinks", name: "Refreshing Drinks", price: "Beverages", imageSrc: "http://img.b2bpic.net/free-photo/close-up-delicious-drinks_23-2149132218.jpg", imageAlt: "beverage selection drinks display"
},
{
- id: "gallery-interior", name: "Cozy Interior", price: "Dining Ambiance", imageSrc: "http://img.b2bpic.net/free-photo/luxury-modern-apartment-with-elegant-interior-design-generated-by-ai_188544-33483.jpg", imageAlt: "modern restaurant interior design"
+ id: "gallery-interior", name: "Cozy Interior", price: "Dining Ambiance", imageSrc: "http://img.b2bpic.net/free-photo/boy-having-coffee-restaurant_23-2148172665.jpg", imageAlt: "modern restaurant interior design"
},
{
- id: "gallery-seating", name: "Comfortable Seating", price: "Experience", imageSrc: "http://img.b2bpic.net/free-photo/beautifully-decorated-interiors-beach-restaurant-day_181624-59566.jpg", imageAlt: "restaurant seating comfortable chairs"
+ id: "gallery-seating", name: "Comfortable Seating", price: "Experience", imageSrc: "http://img.b2bpic.net/free-photo/happy-family-four-adults-baby-celebrating-new-year-together-kitchen-round-table_132075-6536.jpg", imageAlt: "restaurant seating comfortable chairs"
},
{
- id: "gallery-platter", name: "Special Platters", price: "Family Pack", imageSrc: "http://img.b2bpic.net/free-photo/food-catering-canape-antipasto_624325-1409.jpg", imageAlt: "family platter food sharing board"
- }
+ id: "gallery-platter", name: "Special Platters", price: "Family Pack", imageSrc: "http://img.b2bpic.net/free-photo/plates-with-fresh-rolls_23-2148482435.jpg", imageAlt: "family platter food sharing board"
+ },
];
return (
@@ -104,8 +105,8 @@ export default function GalleryPage() {
diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx
index d16f703..e07d099 100644
--- a/src/app/menu/page.tsx
+++ b/src/app/menu/page.tsx
@@ -1,10 +1,11 @@
"use client";
+import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
-import ProductCardOne from "@/components/sections/product/ProductCardOne";
-import ContactSplit from "@/components/sections/contact/ContactSplit";
-import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
+import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
+import ProductCardOne from '@/components/sections/product/ProductCardOne';
+import ContactSplit from '@/components/sections/contact/ContactSplit';
+import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { MessageSquare } from "lucide-react";
export default function MenuPage() {
@@ -70,26 +71,32 @@ export default function MenuPage() {
/>
- {/* Full Menu Section */}
+ {/* Complete Menu Section */}