|
|
|
|
@@ -1,58 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Manrope } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const manrope = Manrope({
|
|
|
|
|
variable: "--font-manrope",
|
|
|
|
|
subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "RepurposeAI Pro - AI Content Repurposing Platform",
|
|
|
|
|
description: "Turn one piece of content into 30 revenue assets in minutes. AI-powered repurposing for LinkedIn, Twitter, email, video scripts and more. Start free with 100 credits.",
|
|
|
|
|
keywords: "AI content repurposing, content generation, LinkedIn automation, social media content, email marketing AI, content marketing tool, SaaS",
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "RepurposeAI Pro - Transform Content Into Revenue",
|
|
|
|
|
description: "AI-powered content repurposing platform. Generate LinkedIn threads, email sequences, video scripts from one blog post.",
|
|
|
|
|
siteName: "RepurposeAI Pro",
|
|
|
|
|
type: "website",
|
|
|
|
|
images: [
|
|
|
|
|
{
|
|
|
|
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/a-modern-software-interface-showing-blog-1772597235605-e9127fcc.png",
|
|
|
|
|
alt: "RepurposeAI Pro Dashboard",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image",
|
|
|
|
|
title: "RepurposeAI Pro - Content Into Revenue",
|
|
|
|
|
description: "Turn 1 blog post into 30 content assets with AI. LinkedIn threads, email sequences, video scripts, and more.",
|
|
|
|
|
images: [
|
|
|
|
|
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ASrzYsl5nTKFq6Jnf9IZaqGKyr/a-modern-software-interface-showing-blog-1772597235605-e9127fcc.png",
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "RepurposeAI Pro", description: "AI-powered content repurposing platform"};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${manrope.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1420,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|