Merge version_2 into main #3

Merged
bender merged 2 commits from version_2 into main 2026-03-05 12:11:39 +00:00
2 changed files with 10 additions and 64 deletions

View File

@@ -1,74 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { DM_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const dmSans = DM_Sans({
variable: "--font-dm-sans",
subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Coffee Craft - Premium Café in Dahisar, Mumbai | Specialty Coffee",
description: "Discover Coffee Craft, a cozy premium café in Dahisar offering specialty coffee, delicious food, and the perfect ambience for work or relaxation. Free WiFi, friendly staff, 4.6★ rating.",
keywords: "café in Dahisar, coffee shop near me, best café Borivali, specialty coffee Mumbai, cozy café IC Colony, coffee near Kandarpada",
metadataBase: new URL("https://coffeecraft.com"),
alternates: {
canonical: "https://coffeecraft.com",
},
openGraph: {
title: "Coffee Craft - Your Cozy Coffee Escape in Dahisar",
description: "Premium café experience with specialty coffee, delicious food, and warm ambience. Visit us today!",
url: "https://coffeecraft.com",
siteName: "Coffee Craft ☕",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/parisian-coffee-shop-style-with-tasty-coffee-served-wooden-table-coffee-shop-design_482257-18283.jpg",
alt: "Coffee Craft Café Interior",
},
],
},
twitter: {
card: "summary_large_image",
title: "Coffee Craft - Premium Café in Dahisar",
description: "Specialty coffee, delicious food, and cozy ambience. Perfect for work, dates, or meetups.",
images: ["http://img.b2bpic.net/free-photo/parisian-coffee-shop-style-with-tasty-coffee-served-wooden-table-coffee-shop-design_482257-18283.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Coffee Craft", description: "Premium café experience in Dahisar"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1436,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -47,6 +47,7 @@ export default function HomePage() {
title="Your Cozy Coffee Escape in Dahisar"
description="Craft coffee, delicious bites, and the perfect place to relax, work, or meet friends. Experience premium café culture with a warm neighborhood vibe."
tag="Premium Café Experience"
tagIcon={MapPin}
imageSrc="http://img.b2bpic.net/free-photo/parisian-coffee-shop-style-with-tasty-coffee-served-wooden-table-coffee-shop-design_482257-18283.jpg"
imageAlt="Coffee Craft café interior ambience"
textPosition="bottom-left"
@@ -190,4 +191,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}