From 2466106eee7b493cf6a5183170b66a49202eb2be Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 17:10:56 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 60 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 48 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83bcc55..e2756ff 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - + {children}