3 Commits

Author SHA1 Message Date
1758ac6ce9 Update src/app/page.tsx 2026-03-08 09:19:22 +00:00
4fbfcb68d8 Update src/app/layout.tsx 2026-03-08 09:19:21 +00:00
2667314b03 Merge version_1 into main
Merge version_1 into main
2026-03-08 09:17:49 +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 { Source_Sans_3 } 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 sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Cafex - Premium Coffee & Café in Dehradun", description: "Discover Cafex, Dehradun's favorite café. Authentic coffee, specialty beverages, cozy ambiance. Visit us on Rajpur Road for the perfect coffee experience.", keywords: "café in Dehradun, coffee shop, specialty coffee, hazelnut latte, KitKat shake, Vietnamese coffee, Rajpur Road café", metadataBase: new URL("https://cafexdehradun.com"),
alternates: {
canonical: "https://cafexdehradun.com"},
openGraph: {
title: "Cafex - Premium Coffee & Café in Dehradun", description: "Experience authentic coffee and cozy moments at Cafex. Premium beverages, friendly service, and welcoming atmosphere.", url: "https://cafexdehradun.com", siteName: "Cafex", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/abstract-blur-coffee-shop_1339-2397.jpg", alt: "Cafex - Premium Café Experience"},
],
},
twitter: {
card: "summary_large_image", title: "Cafex - Premium Coffee & Café in Dehradun", description: "Your go-to café for authentic coffee and cozy vibes", images: ["http://img.b2bpic.net/free-photo/abstract-blur-coffee-shop_1339-2397.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Cafex - Authentic Coffee Experience", description: "Welcome to Cafex—where passion for coffee meets cozy comfort. Experience expertly crafted beverages, premium quality ingredients, and the perfect atmosphere."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -49,7 +49,7 @@ export default function CafexLanding() {
tagIcon={Coffee}
tagAnimation="slide-up"
buttons={[
{ text: "Visit Us Today", href: "#contact" },
{ text: "Reserve Your Table", href: "#contact" },
{ text: "Explore Menu", href: "#beverages" },
]}
buttonAnimation="slide-up"