From 3468c5fa83d6ae2a702e918ce5faa580d359d333 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 14:24:15 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 49 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 43 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8be4d0a..97a7cb2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,56 +1,20 @@ 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"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Mindshift AI - Enterprise AI Automation Platform", description: "Transform your business with intelligent AI automation. 340% average ROI, 24-hour implementation, and 500+ integrations. Start your free trial today.", keywords: "AI automation, machine learning, enterprise AI, workflow automation, artificial intelligence platform", metadataBase: new URL("https://mindshift.ai"), - openGraph: { - title: "Mindshift AI - Enterprise AI Automation", description: "Intelligent automation for enterprise growth. Transform operations, reduce costs, unlock insights.", siteName: "Mindshift AI", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATThEOE0ad9RVJ6zAxjDVr6Kkn/a-sleek-modern-ai-interface-dashboard-di-1772615810569-2101a537.png", alt: "Mindshift AI Dashboard" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Mindshift AI - Enterprise AI Automation Platform", description: "Harness AI to streamline operations and drive growth. 340% average ROI.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATThEOE0ad9RVJ6zAxjDVr6Kkn/a-sleek-modern-ai-interface-dashboard-di-1772615810569-2101a537.png"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Mindshift AI", description: "Intelligent Automation for Enterprise Growth"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}