From 65657bce2f42e5b84049ce5535366d116996ade0 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 7 Jun 2026 20:54:30 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 33 ++++++++++++++++++++++----------- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4ef0725..d8ddac1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,25 +1,34 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Poppins } from "next/font/google"; import "./globals.css"; import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Poppins } from "next/font/google"; - - - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; const poppins = Poppins({ variable: "--font-poppins", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"] }); +export const metadata: Metadata = { + title: "Our Blog | Hara Minimalist Living", description: "Discover thoughtful insights, minimalist design tips, and sustainable living practices on the Hara Minimalist Living blog. Your guide to an eco-conscious and elegant home.", keywords: ["minimalist living", "eco-conscious", "sustainable design", "home decor blog", "natural inspiration", "luxury living", "Hara Minimalist Living", "e-commerce blog"], + metadataBase: new URL("https://www.haraminimalistliving.com"), + alternates: { + canonical: "/blog" + }, + openGraph: { + title: "Our Blog | Hara Minimalist Living", description: "Discover thoughtful insights, minimalist design tips, and sustainable living practices on the Hara Minimalist Living blog. Your guide to an eco-conscious and elegant home.", url: "https://www.haraminimalistliving.com/blog", siteName: "Hara Minimalist Living", type: "website" + }, + twitter: { + card: "summary_large_image", title: "Our Blog | Hara Minimalist Living", description: "Discover thoughtful insights, minimalist design tips, and sustainable living practices on the Hara Minimalist Living blog. Your guide to an eco-conscious and elegant home." + }, + robots: { + index: true, + follow: true + } +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +37,9 @@ export default function RootLayout({ return ( - + {children}