|
|
|
|
@@ -1,51 +1,20 @@
|
|
|
|
|
import type { Metadata } from "next";
|
|
|
|
|
import { Montserrat } from "next/font/google";
|
|
|
|
|
import { Inter } from "next/font/google";
|
|
|
|
|
import "./globals.css";
|
|
|
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
|
|
|
import Tag from "@/tag/Tag";
|
|
|
|
|
|
|
|
|
|
const montserrat = Montserrat({
|
|
|
|
|
variable: "--font-montserrat", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const inter = Inter({
|
|
|
|
|
variable: "--font-inter", subsets: ["latin"],
|
|
|
|
|
});
|
|
|
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
|
|
|
title: "Mindset Impact | AI Tools & Money-Making Strategies", description: "Transform your mindset, master AI tools, and build online income streams. Join 50K+ entrepreneurs using proven frameworks to scale their digital businesses.", keywords: "mindset, AI tools, online income, digital entrepreneurship, content creation, productivity, growth strategies, automation", metadataBase: new URL("https://mindsetimpact.com"),
|
|
|
|
|
alternates: {
|
|
|
|
|
canonical: "https://mindsetimpact.com"},
|
|
|
|
|
openGraph: {
|
|
|
|
|
title: "Mindset Impact - Upgrade Your Mindset. Upgrade Your Life.", description: "Tools, resources, and AI strategies for entrepreneurs building online income.", url: "https://mindsetimpact.com", siteName: "Mindset Impact", type: "website", images: [
|
|
|
|
|
{
|
|
|
|
|
url: "http://img.b2bpic.net/free-vector/gradient-ui-ux-elements_23-2149057416.jpg", alt: "Mindset Impact - AI Dashboard"},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
twitter: {
|
|
|
|
|
card: "summary_large_image", title: "Mindset Impact - Transform Your Life With AI & Entrepreneurship", description: "Join a community of 50K+ entrepreneurs mastering AI tools and building online income.", images: ["http://img.b2bpic.net/free-vector/gradient-ui-ux-elements_23-2149057416.jpg"],
|
|
|
|
|
},
|
|
|
|
|
robots: {
|
|
|
|
|
index: true,
|
|
|
|
|
follow: true,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
title: "Mindset Impact", description: "Transform your mindset, scale your income, and build the life you deserve."};
|
|
|
|
|
|
|
|
|
|
export default function RootLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: Readonly<{
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}>) {
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={inter.className}>{children}
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1413,7 +1382,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|