Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 33de9450cc | |||
| ff93ed2f13 | |||
| f5411aa04f | |||
| 3e5a95138b | |||
| 59ced3ad61 |
@@ -1,51 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Montserrat } 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 Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const montserrat = Montserrat({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-montserrat", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
title: "Mindset Impact", description: "Transform your mindset, scale your income, and build the life you deserve."};
|
||||||
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,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1413,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplitKpi
|
<HeroSplitKpi
|
||||||
title="Upgrade Your Mindset. Upgrade Your Life."
|
title="Upgrade Your Mindset. Upgrade Your Life."
|
||||||
description="Tools, resources, and AI strategies to help you grow, create, and make money online. Join thousands of entrepreneurs transforming their lives with cutting-edge mindset, AI, and digital opportunity frameworks."
|
description="Earn your first $10K online in 90 days using AI-powered strategies, proven frameworks, and a supportive community of entrepreneurs. Access cutting-edge tools, money-making blueprints, and mindset coaching to accelerate your path to financial freedom."
|
||||||
background={{ variant: "glowing-orb" }}
|
background={{ variant: "glowing-orb" }}
|
||||||
kpis={[
|
kpis={[
|
||||||
{ value: "50K+", label: "Community Members" },
|
{ value: "50K+", label: "Community Members" },
|
||||||
|
|||||||
Reference in New Issue
Block a user