Skip to content

Commit 12c9e03

Browse files
committed
fix
1 parent 2100c93 commit 12c9e03

File tree

1 file changed

+2
-26
lines changed
  • apps/web/app/(freetools)/free-tools/blog-post-image-generator

1 file changed

+2
-26
lines changed
Lines changed: 2 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,16 @@
11
import type React from "react";
22
import type { Metadata } from "next";
3-
import { Montserrat } from "next/font/google";
4-
import { Open_Sans } from "next/font/google";
5-
6-
const montserrat = Montserrat({
7-
subsets: ["latin"],
8-
display: "swap",
9-
variable: "--font-montserrat",
10-
weight: ["400", "600", "700", "900"],
11-
});
12-
13-
const openSans = Open_Sans({
14-
subsets: ["latin"],
15-
display: "swap",
16-
variable: "--font-open-sans",
17-
weight: ["400", "500", "600"],
18-
});
193

204
export const metadata: Metadata = {
21-
title: "OG Image Generator - Create Beautiful Blog Post Images",
5+
title: "Zenblog - Create Free Beautiful Blog Post Images",
226
description:
237
"Generate stunning Open Graph images for your blog posts with customizable templates, colors, and fonts.",
24-
generator: "v0.app",
258
};
269

2710
export default function RootLayout({
2811
children,
2912
}: Readonly<{
3013
children: React.ReactNode;
3114
}>) {
32-
return (
33-
<html
34-
lang="en"
35-
className={`${montserrat.variable} ${openSans.variable} antialiased`}
36-
>
37-
<body className="font-sans">{children}</body>
38-
</html>
39-
);
15+
return <div>{children}</div>;
4016
}

0 commit comments

Comments
 (0)