Update src/app/layout.tsx

This commit is contained in:
2026-03-10 17:10:56 +00:00
parent 2fc0942d2f
commit 2466106eee

View File

@@ -1,29 +1,63 @@
import type { Metadata } from "next";
import { Libre_Baskerville, Inter } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } 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 { Libre_Baskerville } from "next/font/google";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
const inter = Inter({
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<{
@@ -32,7 +66,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<body
className={`${libreBaskerville.variable} ${interFont.variable} ${halant.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -44,4 +80,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}