Merge version_3 into main #2
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${mulish.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<body className={`${poppins.variable}`}>
|
||||
<ServiceWrapper>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
</ServiceWrapper>
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1401,7 +1392,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user