From 55276b119829211452d136314d2035a48c84d994 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 16:34:43 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 51 +++++++++++++++++++++++++++++++++++----------- 1 file changed, 39 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 83bcc55..243e8cb 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,29 +1,54 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Libre_Baskerville, 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({ variable: "--font-inter", subsets: ["latin"], }); +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-1773160384814-dce16055.jpg", + 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-1773160384814-dce16055.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -32,7 +57,9 @@ export default function RootLayout({ return ( - + {children}