5 Commits

Author SHA1 Message Date
8cb556d816 Merge version_3 into main
Merge version_3 into main
2026-03-09 18:03:18 +00:00
a29fe5b989 Update src/app/layout.tsx 2026-03-09 18:03:13 +00:00
9122c55930 Merge version_3 into main
Merge version_3 into main
2026-03-09 18:02:19 +00:00
97d73b959a Update src/app/layout.tsx 2026-03-09 18:02:15 +00:00
2466d1fb49 Merge version_1 into main
Merge version_1 into main
2026-03-09 17:52:22 +00:00

View File

@@ -1,39 +1,25 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Mulish } from "next/font/google"; import { Poppins } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const mulish = Mulish({ const poppins = Poppins({
variable: "--font-mulish", subsets: ["latin"], variable: "--font-poppins", subsets: ["latin"],
}); weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
}); });
export const metadata: Metadata = { 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 | 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."};
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"},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <body className={`${poppins.variable}`}>
<body {children}
className={`${mulish.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1401,7 +1387,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }