Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-07 14:24:19 +00:00
2 changed files with 7 additions and 44 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${figtree.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1418,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -50,7 +50,7 @@ export default function LandingPage() {
tagAnimation="slide-up"
background={{ variant: "sparkles-gradient" }}
buttons={[
{ text: "Start Free Trial", href: "contact" },
{ text: "Get Started Free", href: "contact" },
{ text: "Watch Demo", href: "https://www.youtube.com" }
]}
buttonAnimation="blur-reveal"