Update src/app/layout.tsx

This commit is contained in:
2026-03-18 15:11:59 +00:00
parent 8acaf8282f
commit 57dd471b9d

View File

@@ -1,24 +1,54 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Figtree } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "ArticleFlow - AI Article Generator for Professional Writers",
description: "Generate publication-ready articles in 12+ professional formats. Press articles, scientific papers, academic writing, and more. Powered by advanced AI that respects professional methodologies.",
keywords: "article generator, AI writing, content creation, press release, scientific papers, academic writing, blog posts, automated writing",
openGraph: {
title: "ArticleFlow - Professional Article Generation",
description: "Transform your ideas into publication-ready articles across diverse formats with intelligent AI. Press articles, scientific research, academic writing, and more.",
type: "website",
siteName: "ArticleFlow",
images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B7iYnr8BCy2SRKnsgxH5Fs2qzg/a-modern-professional-article-generation-1773846649375-d6fa7a65.png",
alt: "ArticleFlow Article Generation Platform",
},
],
},
twitter: {
card: "summary_large_image",
title: "ArticleFlow - AI Article Generator",
description: "Generate professional articles in 12+ formats with AI that understands your writing style.",
images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3B7iYnr8BCy2SRKnsgxH5Fs2qzg/a-modern-professional-article-generation-1773846649375-d6fa7a65.png",
],
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +57,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${figtree.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +71,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}