Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 19:19:53 +00:00
2 changed files with 13 additions and 43 deletions

View File

@@ -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: "The Green Dot Theory | Vegetarian Café in South Delhi", description: "Discover the best vegetarian café in South Delhi. Fresh coffee, authentic cuisine, and peaceful vibes. 4.6★ rated. Visit us at Bhatti. Call 098106 66211.", keywords: "vegetarian café South Delhi, best café Bhatti, organic coffee shop, vegetarian restaurant Delhi, café near me", metadataBase: new URL("https://thegreendottheory.com"),
alternates: {
canonical: "https://thegreendottheory.com"},
openGraph: {
title: "The Green Dot Theory | South Delhi's Favorite Vegetarian Café", description: "Fresh vegetarian food, premium coffee, and peaceful ambiance. 4.6★ rated by 227 customers. Open 11 AM 11 PM daily.", url: "https://thegreendottheory.com", siteName: "The Green Dot Theory", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/elegant-couple-spend-time-restaurant_1157-20505.jpg", alt: "The Green Dot Theory Vegetarian Café Interior"},
],
},
twitter: {
card: "summary_large_image", title: "The Green Dot Theory | Vegetarian Café", description: "Best café in South Delhi. 4.6★ rated. Visit us today!", images: ["http://img.b2bpic.net/free-photo/elegant-couple-spend-time-restaurant_1157-20505.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>
);
}

View File

@@ -56,7 +56,7 @@ export default function LandingPage() {
tagIcon={Leaf}
tagAnimation="slide-up"
buttons={[
{ text: "📞 Call Now", href: "tel:098106 66211" },
{ text: "🍽️ Reserve a Table", href: "tel:098106 66211" },
{ text: "📍 Get Directions", href: "https://maps.google.com/?q=B-3+Bhatti+Main+Rd+New+Delhi" }
]}
buttonAnimation="slide-up"