Update src/app/layout.tsx
This commit is contained in:
@@ -1,20 +1,9 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Figtree } from "next/font/google";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const figtree = Figtree({
|
||||
variable: "--font-figtree", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
@@ -22,34 +11,35 @@ const inter = Inter({
|
||||
export const metadata: Metadata = {
|
||||
title: "Mindex | Enterprise AI Solutions Platform", description: "Next-generation AI services combining minimalism with cyberpunk aesthetics. Enterprise automation, custom models, intelligent chatbots, and data intelligence for mid-to-large organizations.", keywords: "AI services, enterprise automation, custom AI models, chatbots, data intelligence, SaaS, artificial intelligence platform", metadataBase: new URL("https://mindex.ai"),
|
||||
alternates: {
|
||||
canonical: "https://mindex.ai"},
|
||||
canonical: "https://mindex.ai"
|
||||
},
|
||||
openGraph: {
|
||||
title: "Mindex | Intelligence Evolved", description: "Transform the way you build, automate, and scale with enterprise-grade AI solutions.", url: "https://mindex.ai", siteName: "Mindex AI", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQBdCKogUFRu0C7H9g5TBc3Q8s/a-sleek-futuristic-ai-dashboard-interfac-1772515614287-218728a3.png", alt: "Mindex AI Dashboard"},
|
||||
],
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQBdCKogUFRu0C7H9g5TBc3Q8s/a-sleek-futuristic-ai-dashboard-interfac-1772515614287-218728a3.png", alt: "Mindex AI Dashboard"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Mindex | Intelligence Evolved", description: "Enterprise AI solutions that transform automation and scale.", images: [
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQBdCKogUFRu0C7H9g5TBc3Q8s/a-sleek-futuristic-ai-dashboard-interfac-1772515614287-218728a3.png"],
|
||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQBdCKogUFRu0C7H9g5TBc3Q8s/a-sleek-futuristic-ai-dashboard-interfac-1772515614287-218728a3.png"
|
||||
]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
children
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${figtree.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<body className={`${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user