83 lines
2.7 KiB
TypeScript
83 lines
2.7 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Libre_Baskerville, Inter } from "next/font/google";
|
|
import { Halant } from "next/font/google";
|
|
import "./globals.css";
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
import Tag from "@/tag/Tag";
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
|
|
const libreBaskerville = Libre_Baskerville({
|
|
variable: "--font-libre-baskerville",
|
|
subsets: ["latin"],
|
|
weight: ["400", "700"],
|
|
});
|
|
|
|
const interFont = Inter({
|
|
variable: "--font-inter",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
const halant = Halant({
|
|
variable: "--font-halant",
|
|
subsets: ["latin"],
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Aura - AI-Powered Ecosystem for Websites, Creative Services & Marketing",
|
|
description: "Transform your digital presence with Aura's AI ecosystem. Build stunning websites, access professional creative services, and automate marketing campaigns. Bilingual SK/EN support.",
|
|
keywords: "AI website builder, creative services, marketing automation, SaaS platform, digital transformation, Slovakia",
|
|
metadataBase: new URL("https://aura.ai"),
|
|
alternates: {
|
|
canonical: "https://aura.ai"
|
|
},
|
|
openGraph: {
|
|
title: "Aura - AI Ecosystem for Creators & Businesses",
|
|
description: "Build websites, access creative services, and automate marketing with AI. Professional tools for creators worldwide.",
|
|
url: "https://aura.ai",
|
|
siteName: "Aura",
|
|
type: "website",
|
|
images: [
|
|
{
|
|
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AlBnsBj6EeBMKdvTCuV7kS0Cn2/modern-ai-dashboard-interface-showing-we-1773162535354-b8923c37.png",
|
|
alt: "Aura AI Dashboard - AI-Powered Ecosystem"
|
|
}
|
|
]
|
|
},
|
|
twitter: {
|
|
card: "summary_large_image",
|
|
title: "Aura - AI Ecosystem for Websites & Marketing",
|
|
description: "Build stunning websites, access creative services, and automate marketing with AI.",
|
|
images: [
|
|
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AlBnsBj6EeBMKdvTCuV7kS0Cn2/modern-ai-dashboard-interface-showing-we-1773162535354-b8923c37.png"
|
|
]
|
|
},
|
|
robots: {
|
|
index: true,
|
|
follow: true
|
|
}
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body
|
|
className={`${libreBaskerville.variable} ${interFont.variable} ${halant.variable} antialiased`}
|
|
>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
} |