From 0057f610675075023970aaed0b086a80e86b1006 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 23:09:37 +0000 Subject: [PATCH 1/6] Update src/app/homes/[id]/page.tsx --- src/app/homes/[id]/page.tsx | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/app/homes/[id]/page.tsx b/src/app/homes/[id]/page.tsx index 515aa39..a93dcc8 100644 --- a/src/app/homes/[id]/page.tsx +++ b/src/app/homes/[id]/page.tsx @@ -39,28 +39,28 @@ const homeData: Record Date: Tue, 10 Mar 2026 23:09:37 +0000 Subject: [PATCH 2/6] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7d68022..ec34844 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Lato } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Lato } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const lato = Lato({ variable: "--font-lato", @@ -20,6 +24,39 @@ const lato = Lato({ weight: ["100", "300", "400", "700", "900"], }); +export const metadata: Metadata = { + title: "Segue Living - Premium Furnished Co-Living for Young Professionals", + description: "Discover premium co-living apartments in 25+ major cities. Fully furnished, flexible terms, and built-in community for professionals aged 22–30.", + keywords: "co-living, furnished apartments, young professionals, urban living, flexible lease, community living", + metadataBase: new URL("https://segueLiving.com"), + alternates: { + canonical: "https://segueLiving.com", + }, + openGraph: { + title: "Segue Living - Premium Co-Living Apartments", + description: "Flexible furnished co-living designed for modern city life. Join our community of young professionals.", + url: "https://segueLiving.com", + siteName: "Segue Living", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/part-kitchen-interior-white_169016-17725.jpg", + alt: "Modern furnished apartment", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Segue Living - Premium Co-Living", + description: "Find your perfect furnished home with flexible terms and built-in community.", + images: ["http://img.b2bpic.net/free-photo/part-kitchen-interior-white_169016-17725.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +65,9 @@ export default function RootLayout({ return ( - + {children}