From 5ebc7642ee9778a7c4884494d94bf44ff839f248 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 02:12:54 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 43 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7eeade6..ca23e3a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Poppins } 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 { Poppins } 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 poppins = Poppins({ variable: "--font-poppins", @@ -20,6 +24,35 @@ const poppins = Poppins({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); +export const metadata: Metadata = { + title: "ANLY - Professional Website Templates for Designers & Agencies", + description: "Browse 50+ professional website templates designed for freelancers, agencies, and small businesses. Choose template + service level, customize, and launch in minutes.", + keywords: "website templates, portfolio templates, business website, agency templates, professional templates, customizable templates, website builder", + metadataBase: new URL("https://www.anly.io"), + alternates: { + canonical: "https://www.anly.io", + }, + openGraph: { + title: "ANLY - Professional Website Templates", + description: "Launch your professional website in minutes with ANLY templates", + url: "https://www.anly.io", + siteName: "ANLY", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-vector/business-landing-page-with-photo_23-2148248047.jpg", + alt: "ANLY Template Showcase", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "ANLY - Professional Website Templates", + description: "Launch your professional website in minutes", + images: ["http://img.b2bpic.net/free-vector/business-landing-page-with-photo_23-2148293486.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +61,9 @@ export default function RootLayout({ return ( - + {children}