4 Commits

Author SHA1 Message Date
efb2e8846e Merge version_2 into main
Merge version_2 into main
2026-03-08 17:28:47 +00:00
a912598e3a Update src/app/page.tsx 2026-03-08 17:28:43 +00:00
61089cd6b5 Update src/app/layout.tsx 2026-03-08 17:28:42 +00:00
facaa50660 Merge version_1 into main
Merge version_1 into main
2026-03-08 14:17:37 +00:00
2 changed files with 15 additions and 47 deletions

View File

@@ -1,54 +1,23 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } from "next/font/google";
import { Poppins } 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 inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const figtree = Figtree({
variable: "--font-figtree", subsets: ["latin"],
const poppins = Poppins({
subsets: ["latin"],
weight: ["400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Gossip Cafe & Restaurant | Premium Dining & Social Gathering", description: "Experience premium dining at Gossip Cafe. Sophisticated ambiance, culinary excellence, and vibrant social gatherings. Open 11:30 PM. 4.9★ rated. Reserve your table today.", keywords: "cafe restaurant, premium dining, social gathering, culinary experience, cocktails, fine dining India", openGraph: {
title: "Gossip Cafe & Restaurant - Where Culinary Art Meets Vibrant Social Gatherings", description: "Discover premium dining with sophisticated ambiance at Gossip Cafe & Restaurant. 4.9★ rated. Reserve now.", siteName: "Gossip Cafe & Restaurant", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/close-up-small-vase-with-dried-plants_23-2148238664.jpg", alt: "Gossip Cafe Interior"},
],
},
twitter: {
card: "summary_large_image", title: "Gossip Cafe & Restaurant | Premium Dining Destination", description: "Experience culinary excellence and vibrant social ambiance at Gossip Cafe.", images: ["http://img.b2bpic.net/free-photo/happy-friends-posing-through-window_23-2148422477.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Gossip Cafe & Restaurant", description: "Premium dining and social gathering destination"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={poppins.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1385,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -99,22 +99,22 @@ export default function LandingPage() {
features={[
{
icon: ChefHat,
title: "Culinary Artistry", description: "Chef-curated dishes blending traditional and contemporary flavors with premium, locally-sourced ingredients."},
title: "Culinary Artistry", description: "Chef-curated dishes blending flavors with premium, locally-sourced ingredients."},
{
icon: Wine,
title: "Curated Beverages", description: "Handpicked wines, craft cocktails, and signature blends crafted by expert mixologists."},
title: "Curated Beverages", description: "Handpicked wines, craft cocktails, and signature blends by expert mixologists."},
{
icon: Flame,
title: "Ambiance & Design", description: "Sophisticated interiors with ambient lighting creating the perfect atmosphere for dining and celebrations."},
title: "Ambiance & Design", description: "Sophisticated interiors with ambient lighting for perfect dining atmosphere."},
{
icon: Users,
title: "Social Gatherings", description: "Spacious areas designed for intimate conversations, celebrations, and corporate events."},
title: "Social Gatherings", description: "Spacious areas designed for intimate conversations, celebrations, and events."},
{
icon: Clock,
title: "Extended Hours", description: "Open from morning coffee to late-night gatherings until 11:30 pm for your convenience."},
title: "Extended Hours", description: "Open from morning coffee to late-night gatherings until 11:30 pm."},
{
icon: MapPin,
title: "Prime Location", description: "Easily accessible destination in the heart of the city with ample parking and easy transit access."},
title: "Prime Location", description: "Easily accessible with ample parking and convenient transit access."},
]}
textboxLayout="default"
animationType="slide-up"