diff --git a/src/app/booking/page.tsx b/src/app/booking/page.tsx
new file mode 100644
index 0000000..dac27c8
--- /dev/null
+++ b/src/app/booking/page.tsx
@@ -0,0 +1,24 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
+import ContactCenter from '@/components/sections/contact/ContactCenter';
+import React from 'react';
+
+export default function BookingPage() {
+ return (
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/experience/page.tsx b/src/app/experience/page.tsx
new file mode 100644
index 0000000..8e529f9
--- /dev/null
+++ b/src/app/experience/page.tsx
@@ -0,0 +1,24 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
+import TextAbout from '@/components/sections/about/TextAbout';
+import React from 'react';
+
+export default function ExperiencePage() {
+ return (
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 6b444f5..1cd3d02 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -32,22 +32,11 @@ export default function LandingPage() {
@@ -55,71 +44,16 @@ export default function LandingPage() {
@@ -130,26 +64,10 @@ export default function LandingPage() {
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
metrics={[
- {
- id: "m1",
- value: "4.8★",
- description: "Customer Rated",
- },
- {
- id: "m2",
- value: "Premium",
- description: "Atmosphere",
- },
- {
- id: "m3",
- value: "Huge",
- description: "Portions",
- },
- {
- id: "m4",
- value: "All Day",
- description: "Vibes",
- },
+ { id: "m1", value: "4.8★", description: "Customer Rated" },
+ { id: "m2", value: "Premium", description: "Atmosphere" },
+ { id: "m3", value: "Huge", description: "Portions" },
+ { id: "m4", value: "All Day", description: "Vibes" },
]}
title="Why Choose Us"
description="Excellence in every detail."
@@ -170,36 +88,9 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
features={[
- {
- id: "f1",
- label: "Social",
- title: "Luxury Outdoor Vibes",
- items: [
- "Spacious seating",
- "Premium umbrellas",
- "Social atmosphere",
- ],
- },
- {
- id: "f2",
- label: "Entertainment",
- title: "Live DJs & Events",
- items: [
- "Incredible sound",
- "Curated music",
- "Celebrity performers",
- ],
- },
- {
- id: "f3",
- label: "Cuisine",
- title: "Premium Braai Culture",
- items: [
- "Massive platters",
- "Perfectly grilled",
- "Authentic flavour",
- ],
- },
+ { id: "f1", label: "Social", title: "Luxury Outdoor Vibes", items: ["Spacious seating", "Premium umbrellas", "Social atmosphere"] },
+ { id: "f2", label: "Entertainment", title: "Live DJs & Events", items: ["Incredible sound", "Curated music", "Celebrity performers"] },
+ { id: "f3", label: "Cuisine", title: "Premium Braai Culture", items: ["Massive platters", "Perfectly grilled", "Authentic flavour"] },
]}
title="The Kyalami Lifestyle"
description="From live DJs to premium braai, every detail is crafted for your celebration."
@@ -213,42 +104,10 @@ export default function LandingPage() {
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={false}
products={[
- {
- id: "p1",
- name: "Braai Platter",
- price: "R450",
- imageSrc: "http://img.b2bpic.net/free-photo/person-s-hand-cutting-grilled-beef-steak-chopping-board-with-knife-fork_23-2147840988.jpg",
- },
- {
- id: "p2",
- name: "Braai Mix",
- price: "R320",
- imageSrc: "http://img.b2bpic.net/free-photo/sliced-grilled-steak-wooden-board-eggplant-potato-bel-pepper-top-view_141793-4147.jpg",
- },
- {
- id: "p3",
- name: "Cocktails",
- price: "R140",
- imageSrc: "http://img.b2bpic.net/free-photo/chicken-barbecue-with-bbq-ranch-tomatoes_114579-2059.jpg",
- },
- {
- id: "p4",
- name: "Traditional Buffet",
- price: "R250",
- imageSrc: "http://img.b2bpic.net/free-photo/lamb-steak-with-roasted-grilled-vegetables-black-stone-board_140725-10575.jpg",
- },
- {
- id: "p5",
- name: "Premium Steaks",
- price: "R380",
- imageSrc: "http://img.b2bpic.net/free-photo/men-cooking-barbecue-outdoors_23-2148733648.jpg",
- },
- {
- id: "p6",
- name: "Grilled Wings",
- price: "R180",
- imageSrc: "http://img.b2bpic.net/free-photo/beef-steak-with-fried-potatoes-mayonnaise-mustard-ketchup_140725-1494.jpg",
- },
+ { id: "p1", name: "Braai Platter", price: "R450", imageSrc: "http://img.b2bpic.net/free-photo/person-s-hand-cutting-grilled-beef-steak-chopping-board-with-knife-fork_23-2147840988.jpg" },
+ { id: "p2", name: "Braai Mix", price: "R320", imageSrc: "http://img.b2bpic.net/free-photo/sliced-grilled-steak-wooden-board-eggplant-potato-bel-pepper-top-view_141793-4147.jpg" },
+ { id: "p3", name: "Cocktails", price: "R140", imageSrc: "http://img.b2bpic.net/free-photo/chicken-barbecue-with-bbq-ranch-tomatoes_114579-2059.jpg" },
+ { id: "p4", name: "Traditional Buffet", price: "R250", imageSrc: "http://img.b2bpic.net/free-photo/lamb-steak-with-roasted-grilled-vegetables-black-stone-board_140725-10575.jpg" },
]}
title="Signature Favourites"
description="Crafted for sharing, celebrating and satisfying every craving."
@@ -261,46 +120,8 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
testimonials={[
- {
- id: "1",
- name: "Nothemba Jozi",
- handle: "@nothemba",
- testimonial: "The vibe is so great. Best night of my life.",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/group-friends-eating-restaurant_23-2148395390.jpg",
- },
- {
- id: "2",
- name: "Angel Tshabalala",
- handle: "@angel",
- testimonial: "Mature crowd, top-notch vibe, great food.",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/young-happy-woman-having-fun-while-eating-dinner-communicating-with-friends-dining-table_637285-3342.jpg",
- },
- {
- id: "3",
- name: "I Am Antman",
- handle: "@antman",
- testimonial: "Huge portions, incredible atmosphere.",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/new-year-spend-with-friends-celebrating_23-2149196973.jpg",
- },
- {
- id: "4",
- name: "Zumbu II",
- handle: "@zumbu",
- testimonial: "The service is tops and the place is beautiful.",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-young-people-with-reviews_23-2149394417.jpg",
- },
- {
- id: "5",
- name: "Anonymous Guest",
- handle: "@anonymous",
- testimonial: "Absolutely amazing dining experience.",
- rating: 5,
- imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-smiley-man-with-crossed-arms_23-2149434503.jpg",
- },
+ { id: "1", name: "Nothemba Jozi", handle: "@nothemba", testimonial: "The vibe is so great. Best night of my life.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/group-friends-eating-restaurant_23-2148395390.jpg" },
+ { id: "2", name: "Angel Tshabalala", handle: "@angel", testimonial: "Mature crowd, top-notch vibe, great food.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/young-happy-woman-having-fun-while-eating-dinner-communicating-with-friends-dining-table_637285-3342.jpg" },
]}
showRating={true}
title="What People Love"
@@ -312,21 +133,8 @@ export default function LandingPage() {
);
-}
+}
\ No newline at end of file