From bc685d9878e773644e6e5cf194602808dfa08730 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 08:54:19 +0000 Subject: [PATCH 1/5] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 6826b42..b52d784 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -109,4 +109,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +} -- 2.49.1 From 66594c3dd85c790edaad6f9cb5d836ee0c36f931 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 16 Feb 2026 08:54:20 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 52 ++++++++++++---------------------------------- 1 file changed, 13 insertions(+), 39 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 461fd2e..ac081e2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,26 @@ import type { Metadata } from "next"; -import { Noto_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Poppins } from "next/font/google"; +import "./styles/variables.css"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const notoSans = Noto_Sans({ - variable: "--font-noto-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const poppins = Poppins({ + variable: "--font-poppins", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Beauty and the Beast | Luxury Handcrafted Cups & Mugs", description: "Discover enchanted, handcrafted drinkware inspired by timeless elegance. Premium cups and mugs made with artisan excellence. Explore our collection today.", keywords: "luxury cups, handcrafted mugs, premium drinkware, artisan cups, porcelain tea sets, elegant tableware", metadataBase: new URL("asset://hero-banner"), - alternates: { - canonical: "asset://hero-banner" - }, - openGraph: { - title: "Beauty and the Beast | Enchanted Drinkware Collection", description: "Explore exquisite handcrafted cups and mugs that bring magic to every moment.", type: "website", siteName: "Beauty and the Beast", images: [{ - url: "asset://hero-banner", alt: "Beauty and the Beast luxury cup collection" - }] - }, - twitter: { - card: "summary_large_image", title: "Beauty and the Beast | Premium Handcrafted Cups", description: "Discover our enchanted collection of luxury drinkware.", images: ["asset://hero-banner"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Beauty and the Beast | Enchanted Drinkware", description: "Discover exquisite handcrafted cups and mugs inspired by timeless elegance."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +