Update src/app/layout.tsx
This commit is contained in:
@@ -1,38 +1,22 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Public_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 publicSans = Public_Sans({
|
||||
variable: "--font-public-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "AIInsight - Real-Time AI Analytics Platform", description: "Transform data into actionable intelligence with AIInsight's advanced AI-powered analytics platform. Real-time insights, predictive intelligence, and enterprise security.", keywords: "AI analytics, data intelligence, business analytics, real-time insights, predictive analytics, data visualization, AI platform", robots: {
|
||||
title: "StockTracker - Real-Time Stock Market & Crypto Tracking", description: "Track stocks, gold, silver, Nifty, and cryptocurrencies in real-time. Join with 3-day free trial. Professional market insights at your fingertips.", keywords: "stock market, stock tracker, gold price, silver price, nifty index, cryptocurrency, bitcoin, ethereum, real-time quotes, trading platform", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "AIInsight - AI-Powered Analytics Platform", description: "Real-time data analytics with machine learning insights. Transform your business with intelligent analytics.", type: "website", siteName: "AIInsight", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AX4wgl7XSSOga8gIjue4yhVgFS/a-modern-sophisticated-ai-analytics-dash-1772726056855-c12eaf8b.png", alt: "AIInsight Analytics Dashboard"},
|
||||
],
|
||||
},
|
||||
title: "StockTracker - Real-Time Market Data", description: "Track stocks, gold, silver, Nifty, and crypto with real-time data and professional analytics.", type: "website", siteName: "StockTracker"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "AIInsight - AI Analytics Platform", description: "Real-time insights powered by AI. Make smarter decisions faster.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AX4wgl7XSSOga8gIjue4yhVgFS/a-modern-sophisticated-ai-analytics-dash-1772726056855-c12eaf8b.png"],
|
||||
},
|
||||
card: "summary_large_image", title: "StockTracker - Market Tracking Made Easy", description: "Real-time stock, gold, silver, Nifty, and cryptocurrency tracking."},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
@@ -43,9 +27,7 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
|
||||
>
|
||||
<body className={`${inter.variable} antialiased`}>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user