From 98cc253dcc33cdd6b51c7a5c43f0b612305b8fdb Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 07:14:20 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1439 +------------------------------------------- 1 file changed, 7 insertions(+), 1432 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 73eceba..fd413db 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1444 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Lato } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const lato = Lato({ - variable: "--font-lato", - subsets: ["latin"], - weight: ["100", "300", "400", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "CraftersWealth - Systematic Stock Investing with Zero Fees | India", - description: "Build wealth systematically with AI-powered stock portfolios. Zero AUM fees, full control through your broker, SIP discipline applied to direct stocks. For Indian retail investors.", - keywords: "stock portfolio management, SIP investing, zero fees wealth management, direct stocks, portfolio management India, AI investing", - metadataBase: new URL("https://crafterswealth.com"), - alternates: { - canonical: "https://crafterswealth.com", - }, - openGraph: { - title: "CraftersWealth - Systematic Equity Investing with Zero Fees", - description: "AI-powered portfolio management for Indian retail investors. Systematic investing discipline, zero AUM fees, complete custody control.", - url: "https://crafterswealth.com", - siteName: "CraftersWealth", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhKK3XNmIpFJEKfsJp2cCUBM73/a-modern-fintech-portfolio-management-da-1773039696151-79fee511.png", - alt: "CraftersWealth Portfolio Dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "CraftersWealth - Systematic Stock Investing, Zero Fees", - description: "AI-powered portfolio management. Zero AUM fees. Full control through your own broker.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhKK3XNmIpFJEKfsJp2cCUBM73/a-modern-fintech-portfolio-management-da-1773039696151-79fee511.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "CraftersWealth - Systematic Equity Investing with Full Control", description: "AI-powered direct stock portfolios with SIP discipline, zero fees, and complete control. Invest through your own broker with CraftersWealth."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -