From f06e6a837ba6fa094c50ec649c85be589a51925d Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 05:39:02 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 61 ++++++++++++++++++++-------------------------- 1 file changed, 26 insertions(+), 35 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7f265d2..bdeae25 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,51 +1,43 @@ import type { Metadata } from "next"; -import { Public_Sans, Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/base.css"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geist_mono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "CryptoVault - Premium Cryptocurrency Trading Platform", description: "Secure, fast, and intelligent blockchain trading platform. Trade 150+ cryptocurrencies with enterprise-grade security, real-time analytics, and institutional support.", keywords: "cryptocurrency trading, bitcoin, ethereum, blockchain, crypto exchange, fintech, digital assets, crypto wallet", metadataBase: new URL("https://cryptovault.example.com"), - alternates: { - canonical: "https://cryptovault.example.com"}, - openGraph: { - title: "CryptoVault - Premium Cryptocurrency Trading", description: "Trade cryptocurrencies with confidence on our advanced fintech platform.", url: "https://cryptovault.example.com", siteName: "CryptoVault", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVjNKTmJ7wnaWVodA6wFqFcf7t/a-modern-cryptocurrency-trading-dashboar-1772895484385-23419494.png", alt: "CryptoVault Trading Dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "CryptoVault - Premium Cryptocurrency Trading", description: "Secure trading platform for cryptocurrencies with 99.99% uptime.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVjNKTmJ7wnaWVodA6wFqFcf7t/a-modern-cryptocurrency-trading-dashboar-1772895484385-23419494.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "CryptoVault - Secure Cryptocurrency Trading", description: "Advanced blockchain trading platform for modern investors"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + + {children} +