Merge version_2 into main #4
@@ -1,76 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Nunito_Sans } 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 nunitoSans = Nunito_Sans({
|
||||
variable: "--font-nunito-sans",
|
||||
subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Tamashah - Authentic Indian Restaurant in Crawley",
|
||||
description: "Award-winning Indian restaurant in Crawley. Fine dining, all-you-can-eat buffet, collection & delivery. Book your table or order online today. ⭐ 4.0 rating, 754 reviews.",
|
||||
keywords: "Indian restaurant Crawley, Indian food near me, best curry Crawley, Indian takeaway, fine dining, all you can eat",
|
||||
metadataBase: new URL("https://tamashah.co.uk"),
|
||||
alternates: {
|
||||
canonical: "https://tamashah.co.uk",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Tamashah - Authentic Indian Restaurant in Crawley",
|
||||
description: "Experience authentic Indian cuisine. Fine dining, all-you-can-eat, delivery & collection available.",
|
||||
url: "https://tamashah.co.uk",
|
||||
siteName: "Tamashah",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/rustic-chandelier-made-bulbs-ropes-dining-table-vintage-kitchen_181624-9173.jpg",
|
||||
alt: "Tamashah restaurant interior",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Tamashah - Indian Restaurant",
|
||||
description: "Authentic Indian cuisine in Crawley. 4.0 rating from 754 reviews.",
|
||||
images: [
|
||||
"http://img.b2bpic.net/free-photo/rustic-chandelier-made-bulbs-ropes-dining-table-vintage-kitchen_181624-9173.jpg",
|
||||
],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
title: "Tamashah - Authentic Indian Restaurant", description: "Family-owned Indian restaurant in Crawley serving authentic subcontinental cuisine since 2010. Dine-in, collection, and delivery available."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1438,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -102,13 +102,13 @@ export default function HomePage() {
|
||||
<MetricCardOne
|
||||
metrics={[
|
||||
{
|
||||
id: "rating", value: "4.0", title: "Star Rating", description: "On Google & Trustpilot", icon: Star,
|
||||
id: "rating", value: "4.0", title: "Star Rating", description: "Open Today Until 11pm — On Google & Trustpilot", icon: Star,
|
||||
},
|
||||
{
|
||||
id: "reviews", value: "754", title: "Reviews", description: "From verified customers", icon: MessageCircle,
|
||||
id: "reviews", value: "754", title: "Reviews", description: "Open Today Until 11pm — From verified customers", icon: MessageCircle,
|
||||
},
|
||||
{
|
||||
id: "price", value: "£20", title: "Per Person", description: "Average spend on dine-in", icon: DollarSign,
|
||||
id: "price", value: "£20", title: "Per Person", description: "Open Today Until 11pm — Average spend on dine-in", icon: DollarSign,
|
||||
},
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
|
||||
Reference in New Issue
Block a user