From 39a8fca867d5c5641c9c164bc3d7309cac4b2a57 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 19:40:35 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9433045..1c015d9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,23 +1,33 @@ 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 { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; +const halant = Halant({ + variable: "--font-halant", subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); + 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: "PlatesMart - Premium Dinnerware & Tableware", description: "Discover handcrafted ceramic plates and premium dinnerware sets. Elevate your dining experience with our curated collection of elegant tableware.", keywords: "plates, dinnerware, tableware, ceramic, dining, luxury plates, dishware", metadataBase: new URL("https://platesmart.com"), alternates: { - canonical: "https://platesmart.com" - }, + canonical: "https://platesmart.com"}, openGraph: { title: "PlatesMart - Premium Dinnerware Collection", description: "Explore our exclusive collection of handcrafted ceramic plates and premium dinnerware sets.", url: "https://platesmart.com", siteName: "PlatesMart", type: "website", images: [ { - url: "http://img.b2bpic.net/free-photo/young-dark-haired-woman-serving-table-kitchen_259150-59709.jpg", alt: "Premium ceramic plates collection" - }, + url: "http://img.b2bpic.net/free-photo/young-dark-haired-woman-serving-table-kitchen_259150-59709.jpg", alt: "Premium ceramic plates collection"}, ], }, twitter: { @@ -38,7 +48,7 @@ export default function RootLayout({ {children} @@ -1413,4 +1423,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} -- 2.49.1 From 2a6666f2dd9d1f1d99e49ca655b06c44d753a169 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 19:40:35 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 53 ++++++++++++++---------------------------------- 1 file changed, 15 insertions(+), 38 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c1ea888..b68c389 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -27,7 +27,7 @@ export default function LandingPage() { ); -} \ No newline at end of file +} -- 2.49.1