diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 106e21e..7858f04 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -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 (
-
-