Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| dd754826e1 | |||
| 9928df003c | |||
| 7bf4336b84 | |||
| 1758ac6ce9 | |||
| 4fbfcb68d8 | |||
| 2667314b03 |
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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"
|
||||||
@@ -110,7 +110,7 @@ export default function CafexLanding() {
|
|||||||
|
|
||||||
<div id="beverages" data-section="beverages">
|
<div id="beverages" data-section="beverages">
|
||||||
<ProductCardOne
|
<ProductCardOne
|
||||||
title="Our Signature Beverages"
|
title="Our Signature Beverages — 3 Must-Try Drinks"
|
||||||
description="Discover our handcrafted collection of premium coffees, shakes, and specialty drinks. Each beverage is prepared with precision and passion using the finest ingredients."
|
description="Discover our handcrafted collection of premium coffees, shakes, and specialty drinks. Each beverage is prepared with precision and passion using the finest ingredients."
|
||||||
tag="Menu Highlights"
|
tag="Menu Highlights"
|
||||||
tagIcon={Sparkles}
|
tagIcon={Sparkles}
|
||||||
|
|||||||
Reference in New Issue
Block a user