Merge version_2 into main #5
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1421,7 +1386,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -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 (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
@@ -29,7 +33,7 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "Events", id: "events" },
|
||||
@@ -220,7 +224,7 @@ export default function LandingPage() {
|
||||
columns={[
|
||||
{
|
||||
title: "Quick Links", items: [
|
||||
{ label: "Home", href: "#home" },
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Menu", href: "#menu" },
|
||||
{ label: "Book Events", href: "#events" },
|
||||
|
||||
Reference in New Issue
Block a user