|
|
|
|
@@ -1,52 +1,22 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Libre_Baskerville } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
import type { Metadata } from 'next';
|
|
|
|
|
import { Inter } from 'next/font/google';
|
|
|
|
|
import './globals.css';
|
|
|
|
|
|
|
|
|
|
const libreBaskerville = Libre_Baskerville({
|
|
|
|
|
variable: "--font-libre-baskerville", subsets: ["latin"],
|
|
|
|
|
weight: ["400", "700"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ['latin'] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Uptier - AI SEO Automation Platform", description: "Uptier automates your SEO strategy with AI. Get keyword research, content planning, daily publishing, and analytics. Rank higher in search engines and AI-powered search.", keywords: "AI SEO, SEO automation, content marketing, keyword research, AEO, AI search", metadataBase: new URL("https://uptier.io"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://uptier.io"},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Uptier - AI SEO Automation", description: "Automate your entire SEO strategy with AI. Daily optimized articles, keyword research, and AEO tracking.", url: "https://uptier.io", siteName: "Uptier", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AV15mP5ZCvXpx7MjxmTesUUylP/a-sleek-modern-saas-dashboard-interface--1772662970908-44ca6bde.png", alt: "Uptier AI SEO Dashboard"},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Uptier - AI SEO Automation", description: "Automate your SEO with AI. Daily optimized articles, keyword research, and visibility tracking.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AV15mP5ZCvXpx7MjxmTesUUylP/a-sleek-modern-saas-dashboard-interface--1772662970908-44ca6bde.png"],
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
title: 'Uptier - AI-Powered SEO Automation',
|
|
|
|
|
description: 'AI-powered SEO automation that analyzes your website, researches keywords, creates content plans, and publishes optimized articles daily.',
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1414,7 +1384,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|