From 004ae54d11d53ab9c96b5161347ee9038b215ea0 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 20:29:32 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 59 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 47 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a02c995..ab5ad6e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Mulish } 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 { Mulish } 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 mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "Enterprise ERP Software | SYS AI Business Solutions", + description: "Transform enterprise operations with SYS AI's comprehensive ERP platform. Streamline workflows, optimize resources, and drive growth.", + keywords: "ERP software, enterprise resource planning, business management system, workflow automation, cloud ERP", + metadataBase: new URL("https://sys-ai.erp"), + alternates: { + canonical: "https://sys-ai.erp", + }, + openGraph: { + title: "Enterprise ERP Software | SYS AI", + description: "Comprehensive business management platform for enterprises", + url: "https://sys-ai.erp", + siteName: "SYS AI", + type: "website", + images: [ + { + url: "https://sys-ai.erp/og-image.jpg", + alt: "Enterprise ERP Dashboard", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Enterprise ERP Software | SYS AI", + description: "Transform your business with intelligent enterprise resource planning", + images: ["https://sys-ai.erp/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -31,7 +64,9 @@ export default function RootLayout({ return ( - + {children}