Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 83fdd2cf53 | |||
| 6a0f733a10 | |||
| e73ebad23f | |||
| bd61e36bd6 | |||
| 474d6de56a | |||
| d0a25c9f39 |
@@ -1,52 +1,27 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Public_Sans } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const publicSans = Public_Sans({
|
const geist = Geist({
|
||||||
variable: "--font-public-sans", subsets: ["latin"],
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "365 The Travel Cafe | Cozy Cafe in Surat", description: "Discover 365 The Travel Cafe in Surat—a travel-inspired cafe with specialty coffee, ambiance perfect for dates, work, and hangouts with friends. Reserve your spot today.", keywords: "cafe in Surat, coffee shop, travel-themed cafe, cozy ambiance, specialty coffee, workspace cafe", metadataBase: new URL("https://365travelcafe.com"),
|
title: "365 The Travel Cafe", description: "Your next favorite travel destination awaits"};
|
||||||
alternates: {
|
|
||||||
canonical: "https://365travelcafe.com"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "365 The Travel Cafe | Your Next Favorite Destination", description: "Step into 365 The Travel Cafe—where cozy ambiance, specialty coffee, and travel-inspired vibes meet in Surat's heart.", url: "https://365travelcafe.com", siteName: "365 The Travel Cafe", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/breakfast-wooden-table-with-natural-view_53876-139869.jpg", alt: "365 The Travel Cafe ambiance"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "365 The Travel Cafe | Cozy Cafe in Surat", description: "Discover the perfect cafe for dates, work, and hangouts. Specialty coffee and travel-inspired vibes await.", images: ["http://img.b2bpic.net/free-photo/breakfast-wooden-table-with-natural-view_53876-139869.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={`${publicSans.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
@@ -1415,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -62,8 +62,8 @@ export default function LandingPage() {
|
|||||||
title="Where Travel Meets Coffee Culture"
|
title="Where Travel Meets Coffee Culture"
|
||||||
description="365 The Travel Cafe is more than just a café—it's a sanctuary for wanderlust-seekers, coffee enthusiasts, and community builders. Our thoughtfully curated travel-themed ambiance transports you across continents, while our specialty coffee and contemporary menu fuel your conversations, creativity, and connections. We believe every visit should feel like discovering a hidden gem in a new city."
|
description="365 The Travel Cafe is more than just a café—it's a sanctuary for wanderlust-seekers, coffee enthusiasts, and community builders. Our thoughtfully curated travel-themed ambiance transports you across continents, while our specialty coffee and contemporary menu fuel your conversations, creativity, and connections. We believe every visit should feel like discovering a hidden gem in a new city."
|
||||||
metrics={[
|
metrics={[
|
||||||
{ value: "1000+", title: "Monthly Visitors" },
|
{ value: "5+", title: "Years Running" },
|
||||||
{ value: "4.8★", title: "Average Rating" }
|
{ value: "4.8★", title: "Top Rated Cafe" }
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/unrecognizable-young-woman-sitting-table-cafe-working-laptop_1098-20175.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/unrecognizable-young-woman-sitting-table-cafe-working-laptop_1098-20175.jpg"
|
||||||
imageAlt="365 The Travel Cafe workspace ambiance"
|
imageAlt="365 The Travel Cafe workspace ambiance"
|
||||||
|
|||||||
Reference in New Issue
Block a user