Merge version_2 into main #4
@@ -1,57 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Mulish } 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 mulish = Mulish({
|
||||
variable: "--font-mulish", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Cafeteria – Premium Cafe & Restaurant in Kailashahar", description: "Discover authentic Indian, Chinese, and tandoor cuisine at Cafeteria in Kailashahar. Cozy atmosphere, delicious flavors, and unforgettable dining experience.", keywords: "restaurant Kailashahar, cafe Tripura, tandoori chicken, Indian food, dining", metadataBase: new URL("https://cafeteria-kailashahar.com"),
|
||||
alternates: {
|
||||
canonical: "https://cafeteria-kailashahar.com"},
|
||||
openGraph: {
|
||||
title: "Cafeteria – Cafe cum Restaurant", description: "Premium dining experience with authentic Indian flavors in Kailashahar, Tripura", url: "https://cafeteria-kailashahar.com", siteName: "Cafeteria", images: [
|
||||
{
|
||||
url: "http://img.b2bpic.net/free-photo/pork-kebab-plate-juicy-delicious-food_132075-14723.jpg", alt: "Cafeteria premium food"},
|
||||
],
|
||||
type: "website"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Cafeteria – Premium Cafe & Restaurant", description: "Delicious food, cozy atmosphere, unforgettable flavors in Kailashahar", images: ["http://img.b2bpic.net/free-photo/pork-kebab-plate-juicy-delicious-food_132075-14723.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} ${mulish.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable}`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1419,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -75,7 +75,7 @@ export default function LandingPage() {
|
||||
<div id="about" data-section="about">
|
||||
<TextAbout
|
||||
tag="About Us"
|
||||
title="Cafeteria is a cozy cafe-cum-restaurant located in Kailashahar, Tripura, serving delicious Indian, Chinese, and tandoor dishes. We combine great flavors with a relaxed atmosphere, making it the perfect place to enjoy meals with friends and family."
|
||||
title="Authentic Indian Flavors in a Cozy Atmosphere"
|
||||
useInvertedBackground={true}
|
||||
buttons={[
|
||||
{ text: "Explore More", href: "#menu" }
|
||||
|
||||
Reference in New Issue
Block a user