import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "Bildly - AI-Powered Website Builder", description: "Create professional websites in minutes with Bildly's AI-powered no-code builder. Perfect for entrepreneurs and small businesses.", keywords: "website builder, AI builder, no-code, SaaS, web design, website creator", openGraph: { title: "Bildly - AI-Powered Website Builder", description: "Build beautiful websites with AI. No coding required.", siteName: "Bildly", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766400732838-4uulpve1.jpg", alt: "Bildly website builder" } ] }, twitter: { card: "summary_large_image", title: "Bildly - AI-Powered Website Builder", description: "Create professional websites in minutes with AI.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766400732838-4uulpve1.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}