diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1bfe997..981242c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,49 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Archivo } 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 { Archivo } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const archivo = Archivo({ variable: "--font-archivo", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Beautipatler - Modern Design & Beautiful Patterns", + description: "Create stunning digital experiences with Beautipatler. Modern design platform with beautiful patterns that engage and inspire.", + keywords: "design platform, beautiful patterns, modern design, engagement, creative experience, digital design", + openGraph: { + title: "Beautipatler - Modern & Dynamic Beautiful Design", + description: "Create stunning digital experiences with beautiful patterns and modern design principles.", + siteName: "Beautipatler", + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Beautipatler - Beautiful Modern Design", + description: "Transform your vision into stunning digital experiences.", + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +52,9 @@ export default function RootLayout({ return ( - + {children}