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 { 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";
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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${mulish.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<body className={`${poppins.variable}`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1401,7 +1387,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}