diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ad60093..9b852cc 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1416 +1,20 @@ import type { Metadata } from "next"; -import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Crypto X - Find Your Perfect Cryptocurrency Wallet", description: "Discover and compare the best cryptocurrency wallets for your needs. Security analysis, multi-chain support, and expert recommendations for crypto investors.", keywords: "crypto wallet, wallet finder, cryptocurrency wallets, bitcoin wallet, ethereum wallet, blockchain wallet, web3 wallet", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Crypto X - Find Your Perfect Cryptocurrency Wallet", description: "Smart wallet finder for crypto investors. Compare security, features, and find your ideal wallet.", siteName: "Crypto X", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai7yJA6KpKcyHBFxPgQmE7pa57/a-modern-cryptocurrency-wallet-finder-da-1773063944240-d7d7c469.png", alt: "Crypto X wallet finder dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Crypto X - Find Your Perfect Cryptocurrency Wallet", description: "Discover the best crypto wallet for your needs. Secure, compared, and recommended by experts.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai7yJA6KpKcyHBFxPgQmE7pa57/a-modern-cryptocurrency-wallet-finder-da-1773063944240-d7d7c469.png"], - }, -}; + title: "Crypto X - Find Your Perfect Wallet", description: "Discover, compare, and choose the cryptocurrency wallet that matches your needs."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -