Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8cb556d816 | |||
| a29fe5b989 | |||
| 9122c55930 | |||
| 97d73b959a | |||
| 2466d1fb49 |
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user