Merge version_2 into main #4
@@ -1,59 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Source_Sans_3 } from "next/font/google";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const sourceSans3 = Source_Sans_3({
|
||||
variable: "--font-source-sans-3", subsets: ["latin"]
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Toasted Cafe Meerut | Fresh Rolls, Snacks & Café Food", description: "Toasted Cafe - Best café in Meerut serving fresh rolls, Chinese, Continental dishes & beverages. 4.9★ rated. Order online or call now!", keywords: "cafe in Meerut, best cafe Meerut, cafe near me, snacks cafe, Chinese food cafe, rolls restaurant, fast casual dining", metadataBase: new URL("https://toastedcafe.com"),
|
||||
alternates: {
|
||||
canonical: "https://toastedcafe.com"
|
||||
},
|
||||
openGraph: {
|
||||
title: "Toasted Cafe - Fresh Food & Coffee in Meerut", description: "Discover Toasted Cafe - your go-to destination for fresh rolls, snacks, and café beverages in Meerut", url: "https://toastedcafe.com", siteName: "Toasted Cafe", type: "website", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/restaurant-with-tables-chairs-street_1127-2172.jpg", alt: "cafe exterior storefront restaurant entrance modern cafe"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Toasted Cafe - Fresh Food in Meerut", description: "Best café in Meerut for rolls, snacks & beverages. 4.9★ rated.", images: ["http://img.b2bpic.net/free-photo/restaurant-with-tables-chairs-street_1127-2172.jpg"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "Create Next App", description: "Generated by create next app"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable}`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1421,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -126,7 +126,7 @@ export default function LandingPage() {
|
||||
<TextSplitAbout
|
||||
title="About Toasted Cafe"
|
||||
description={[
|
||||
"Toasted Cafe is Meerut's favorite destination for fresh, delicious café food. With a 4.9-star rating from over 150 reviews, we pride ourselves on quality, freshness, and exceptional service.", "Every dish is carefully prepared fresh to order using premium ingredients. Whether you're a student grabbing a quick bite, friends meeting for snacks, or a casual café visitor, we offer the perfect relaxed environment with friendly service.", "Visit us for an unforgettable café experience where flavor meets affordability—just ₹1–200 per person for premium quality food."
|
||||
"⭐ 4.9-star rated. Toasted Cafe is Meerut's favorite destination for fresh, delicious café food. With a 4.9-star rating from over 150 reviews, we pride ourselves on quality, freshness, and exceptional service.", "Every dish is carefully prepared fresh to order using premium ingredients. Whether you're a student grabbing a quick bite, friends meeting for snacks, or a casual café visitor, we offer the perfect relaxed environment with friendly service.", "Visit us for an unforgettable café experience where flavor meets affordability—just ₹1–200 per person for premium quality food."
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Get Directions", href: "#location-contact" },
|
||||
|
||||
Reference in New Issue
Block a user