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 type { Metadata } from "next";
import { Halant } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import { Source_Sans_3 } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({ const geist = Geist({
variable: "--font-halant", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
}); });
const inter = Inter({ const geistMono = Geist_Mono({
variable: "--font-inter", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
});
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3", subsets: ["latin"],
}); });
export const metadata: Metadata = { 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"), 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."};
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,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1419,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

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