From 17c475a7b3ba61f10ff263e1f540dcd5ea98290f Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 07:05:13 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1418 +------------------------------------------- 1 file changed, 7 insertions(+), 1411 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 55c3e0c..c6a3c03 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1423 +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"; +import "../styles/globals.css"; -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: "CryptoVault - Secure Crypto Trading Platform", description: "Trade crypto with military-grade security, low fees, and lightning-fast execution. Join 2.5M+ traders on CryptoVault.", keywords: "crypto trading, bitcoin, ethereum, blockchain, cryptocurrency exchange, DeFi", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "CryptoVault - Next-Gen Crypto Trading", description: "Trade 150+ cryptocurrencies with bank-grade security and 0.1% fees", type: "website", siteName: "CryptoVault", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeVsYknL7h6QS18xU0UtOH8Dnt/a-futuristic-crypto-trading-dashboard-wi-1772953318522-34dbb78e.png", alt: "CryptoVault Trading Platform"}, - ], - }, - twitter: { - card: "summary_large_image", title: "CryptoVault - Secure Crypto Trading", description: "Start trading crypto with military-grade security and lightning-fast execution", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeVsYknL7h6QS18xU0UtOH8Dnt/a-futuristic-crypto-trading-dashboard-wi-1772953318522-34dbb78e.png"], - }, -}; + title: "CryptoVault - The Future of Crypto Trading", description: "Experience lightning-fast transactions, military-grade security, and unparalleled control over your digital assets. Trade smarter with CryptoVault."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -