From a0a05a99b0ed7bd88f9349309b014b382462619c Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 17:44:36 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1439 +------------------------------------------- 1 file changed, 8 insertions(+), 1431 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index cea4faf..fe39598 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1443 +1,21 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Public_Sans } 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 publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "MacroPulse - Real-Time Global Market Analytics Dashboard", - description: "Track stocks, commodities, and economic indicators in real-time. MacroPulse combines Bloomberg Terminal sophistication with modern web analytics.", - keywords: "financial analytics, stock market, commodities, economic indicators, macro trends, trading platform, market dashboard", - metadataBase: new URL("https://macropulse.com"), - alternates: { - canonical: "https://macropulse.com", - }, - openGraph: { - title: "MacroPulse - Understand Markets. See the Macro Picture.", - description: "Real-time global market analytics for stocks, commodities, and economic data.", - url: "https://macropulse.com", - siteName: "MacroPulse", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcwKjmqX8hXdoaRHFrjpfUV87p/a-sophisticated-financial-analytics-dash-1772905169454-6a395dc8.png", - alt: "MacroPulse Financial Dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "MacroPulse - Real-Time Market Intelligence", - description: "Track global markets, commodities, and economic indicators on one dashboard.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcwKjmqX8hXdoaRHFrjpfUV87p/a-sophisticated-financial-analytics-dash-1772905169454-6a395dc8.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "MacroPulse - Track the Global Economy", description: + "Real-time insights into stocks, commodities, and macroeconomic trends. Monitor market movements, track economic indicators, and understand global market correlations."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -