Merge version_2 into main #2
@@ -1,53 +1,28 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import { Inter } 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 publicSans = Public_Sans({
|
||||
variable: "--font-public-sans", subsets: ["latin"],
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
|
||||
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"),
|
||||
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
|
||||
}
|
||||
};
|
||||
title: "365 The Travel Cafe", description: "Your next favorite travel destination awaits"};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1415,7 +1390,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -62,8 +62,8 @@ export default function LandingPage() {
|
||||
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."
|
||||
metrics={[
|
||||
{ value: "1000+", title: "Monthly Visitors" },
|
||||
{ value: "4.8★", title: "Average Rating" }
|
||||
{ value: "4.8★", title: "Average Rating" },
|
||||
{ value: "1000+", title: "Monthly Visitors" }
|
||||
]}
|
||||
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"
|
||||
|
||||
Reference in New Issue
Block a user