Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7be45d6e37 | |||
| 5af36f9ec2 | |||
| 64beee8f58 |
@@ -1,57 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Raleway } from "next/font/google";
|
import "../styles/globals.css";
|
||||||
import "./globals.css";
|
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const raleway = Raleway({
|
|
||||||
variable: "--font-raleway", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Molecule Mathura - Best Rooftop Restaurant in Mathura | Fine Dining & Events", description: "Experience premium rooftop dining at Molecule Mathura. Fine dining, live music, DJ nights, and unforgettable celebrations. Open until 1 AM. Reserve your table now!", keywords: "rooftop restaurant Mathura, fine dining, live music, DJ nights, party venue, corporate events, birthday celebrations, best restaurant Mathura", metadataBase: new URL("https://molecule-mathura.com"),
|
title: "Molecule Mathura", description: "Fine dining, live music, club parties and unforgettable nights in Mathura. Molecule Mathura – Best Rooftop Restaurant."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://molecule-mathura.com"},
|
|
||||||
openGraph: {
|
|
||||||
title: "Molecule Mathura - Premium Rooftop Dining Experience", description: "Join us for fine dining, live entertainment, and unforgettable rooftop celebrations in Mathura", url: "https://molecule-mathura.com", siteName: "Molecule Mathura", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/wineglass-restaurant-table_23-2147731694.jpg", alt: "Molecule Mathura Rooftop Restaurant"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Molecule Mathura - Rooftop Dining", description: "Premium fine dining and nightlife in Mathura. Reserve your rooftop experience now!", images: ["http://img.b2bpic.net/free-photo/wineglass-restaurant-table_23-2147731694.jpg"],
|
|
||||||
},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${raleway.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1419,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardCarousel
|
<HeroBillboardCarousel
|
||||||
title="Experience Rooftop Dining Like Never Before"
|
title="Experience Rooftop Dining Like Never Before"
|
||||||
description="Fine dining, live music, club parties and unforgettable nights in Mathura. Molecule Mathura – Best Rooftop Restaurant."
|
description="Best rooftop in Mathura! Fine dining, live music, club parties and unforgettable nights. Molecule Mathura – Premium Rooftop Restaurant."
|
||||||
tag="Premium Rooftop Experience"
|
tag="Premium Rooftop Experience"
|
||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
background={{ variant: "sparkles-gradient" }}
|
background={{ variant: "sparkles-gradient" }}
|
||||||
|
|||||||
Reference in New Issue
Block a user