From 97d73b959adc0b0981addd3495edae0be5dce841 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 18:02:15 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 36 +++++++++++++----------------------- 1 file changed, 13 insertions(+), 23 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 84d2116..3b81d9a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,39 +1,30 @@ import type { Metadata } from "next"; -import { Mulish } 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"; +import { ServiceWrapper } from "@/providers/themeProvider/ServiceWrapper"; +import { Tag } from "@/components/tag"; -const mulish = Mulish({ - variable: "--font-mulish", 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: "The Homefront - Beautiful Postcards for Every Occasion", description: "Create stunning personalized postcards for holidays, business promotions, events, and special occasions. Easy design tool, premium quality, fast delivery.", keywords: "postcards, custom postcards, greeting cards, postcard design, print postcards, business postcards", openGraph: { - title: "The Homefront - Beautiful Postcards for Every Occasion", description: "Create and send beautiful personalized postcards with The Homefront. Premium quality, easy design, fast delivery.", type: "website", siteName: "The Homefront"}, - twitter: { - card: "summary_large_image", title: "The Homefront - Beautiful Postcards", description: "Design beautiful postcards for any occasion with The Homefront"}, -}; + title: "The Homefront | Premium Postcard Design & Printing", description: "Create and send beautiful personalized postcards for holidays, business promotions, events, and special occasions. Premium quality printing with easy customization."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - + +