Update src/app/layout.tsx
This commit is contained in:
@@ -1,20 +1,9 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Figtree } from "next/font/google";
|
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
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({
|
const inter = Inter({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
@@ -22,34 +11,35 @@ const inter = Inter({
|
|||||||
export const metadata: Metadata = {
|
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"),
|
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: {
|
alternates: {
|
||||||
canonical: "https://mindex.ai"},
|
canonical: "https://mindex.ai"
|
||||||
|
},
|
||||||
openGraph: {
|
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: [
|
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: {
|
twitter: {
|
||||||
card: "summary_large_image", title: "Mindex | Intelligence Evolved", description: "Enterprise AI solutions that transform automation and scale.", images: [
|
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: {
|
robots: {
|
||||||
index: true,
|
index: true,
|
||||||
follow: true,
|
follow: true
|
||||||
},
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children
|
||||||
}: Readonly<{
|
}: Readonly<{
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}>) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body
|
<body className={`${inter.variable} antialiased`}>
|
||||||
className={`${figtree.variable} ${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user