Update src/app/layout.tsx

This commit is contained in:
2026-03-04 10:12:40 +00:00
parent 3d90fa26a8
commit 8c352e6088

View File

@@ -1,57 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "AISync - Intelligent Automation Platform", description: "Enterprise-grade AI automation platform that scales your business. Automate workflows, reduce costs, and unlock intelligent insights with AISync's next-generation platform.", keywords: "AI automation, workflow automation, business intelligence, machine learning, enterprise software, intelligent automation", metadataBase: new URL("https://www.aisync.ai"),
alternates: {
canonical: "https://www.aisync.ai"},
openGraph: {
title: "AISync - Intelligent Automation Platform", description: "Automate complex workflows with AI. Scale your operations and unlock competitive advantage.", url: "https://www.aisync.ai", siteName: "AISync", type: "website", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATQAn2lnaQvMOoAxpmGSwscCUf/a-modern-ai-platform-dashboard-with-mult-1772614043588-99f8c9fb.png", alt: "AISync Intelligence Hub Dashboard"},
],
},
twitter: {
card: "summary_large_image", title: "AISync - Intelligent Automation Platform", description: "Transform your operations with AI-powered workflow automation", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATQAn2lnaQvMOoAxpmGSwscCUf/a-modern-ai-platform-dashboard-with-mult-1772614043588-99f8c9fb.png"],
},
robots: {
index: true,
follow: true,
},
};
title: "AISync - Intelligent Automation at Scale", description: "Harness the power of advanced AI to automate complex workflows, accelerate decision-making, and transform your business operations."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}