diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
new file mode 100644
index 0000000..0a6240e
--- /dev/null
+++ b/src/app/about/page.tsx
@@ -0,0 +1,181 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
+import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
+import SplitAbout from '@/components/sections/about/SplitAbout';
+import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
+import FooterSimple from '@/components/sections/footer/FooterSimple';
+import { Heart, Users, Star, Zap, Trophy, Award, Clock, MapPin } from 'lucide-react';
+
+export default function AboutPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 1f8f002..55a15d9 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,1415 +1,33 @@
import type { Metadata } from "next";
-import { Public_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
+import "./styles/variables.css";
+import "./styles/base.css";
-const publicSans = Public_Sans({
- variable: "--font-public-sans", subsets: ["latin"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Golden Hour Multi Cuisine Restaurant | Reservations & Dining", description: "Experience authentic Indian, Chinese, Continental & Tandoori cuisine at Golden Hour. 4.6★ rated family restaurant. Reserve table or call +91-9876-543-210 now.", keywords: "restaurant reservations, multi-cuisine dining, Indian restaurant, Tandoori, family dining, celebrations, affordable dining, local restaurant", metadataBase: new URL("https://goldenhourrestaurant.com"),
- alternates: {
- canonical: "https://goldenhourrestaurant.com"
- },
- openGraph: {
- title: "Golden Hour Multi Cuisine Restaurant - Reserve Your Table Today", description: "Discover the best multi-cuisine dining experience. Indian, Chinese, Continental & Tandoori specialties. 4.6★ rated. Perfect for family dinners and celebrations.", url: "https://goldenhourrestaurant.com", siteName: "Golden Hour Restaurant", type: "website", images: [{
- url: "http://img.b2bpic.net/free-photo/top-view-lunch-setup-with-grape-leaves-dolma-lentil-soup-vegetable-salad-with-cheese_140725-8875.jpg", alt: "Golden Hour Multi Cuisine Restaurant - Premium Dining"
- }]
- },
- twitter: {
- card: "summary_large_image", title: "Golden Hour Multi Cuisine Restaurant", description: "Authentic multi-cuisine dining with Indian, Chinese, Continental & Tandoori specialties. Reserve now: +91-9876-543-210", images: ["http://img.b2bpic.net/free-photo/top-view-lunch-setup-with-grape-leaves-dolma-lentil-soup-vegetable-salad-with-cheese_140725-8875.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Golden Hour Multi Cuisine Restaurant", description: "Experience the best multi-cuisine dining in town with authentic Indian, Chinese, Continental & Tandoori specialties."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
- {children}
-
+
+ {children}