diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 5636bdd..9bf56d6 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,59 +1,24 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Nunito } 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 halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const nunito = Nunito({
- variable: "--font-nunito", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
- title: "Moto Space Restaurant & Party Hall | Family Dining & Events in Madurai", description: "Discover Moto Space Restaurant & Party Hall in Madurai - rated 4.2★ by 825 customers. Enjoy family dining, catering, and event hosting with beautiful ambience and authentic cuisine.", keywords: "restaurant Madurai, party hall Madurai, AC party hall, family dining, event venue, birthday party venue, catering Madurai, late night restaurant", metadataBase: new URL("https://motospace.example.com"),
- alternates: {
- canonical: "https://motospace.example.com"
- },
- openGraph: {
- title: "Moto Space Restaurant & Party Hall | Madurai", description: "Premium family dining and event hosting venue in Madurai with 4.2★ rating from 825 reviews", url: "https://motospace.example.com", siteName: "Moto Space Restaurant & Party Hall", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/full-shot-people-celebrating-together_23-2149213377.jpg", alt: "Moto Space restaurant outdoor dining ambience"
- }
- ]
- },
- twitter: {
- card: "summary_large_image", title: "Moto Space Restaurant & Party Hall | Madurai", description: "Family-friendly restaurant with party hall, exceptional food, and beautiful ambience. Open 24 hours.", images: ["http://img.b2bpic.net/free-photo/full-shot-people-celebrating-together_23-2149213377.jpg"]
- },
- robots: {
- index: true,
- follow: true
- }
-};
+ title: "Moto Space - Restaurant & Party Hall in Madurai", description: "Moto Space: Family dining, events, and celebrations under the flyover in Madurai. Best party hall, affordable food, and exceptional service."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
+
+
+ {children}
+
-
);
}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 950a7d7..ea3de0a 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -13,6 +13,10 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Clock, CheckCircle, ParkingCircle, Wind, Users, DollarSign, Star, MessageCircle } from 'lucide-react';
export default function LandingPage() {
+ const scrollToTop = () => {
+ window.scrollTo({ top: 0, behavior: 'smooth' });
+ };
+
return (