From 3d28d0ae615e98520c56f0a6a601398c8efb3bb9 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 18:48:01 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1420 -------------------------------------------- 1 file changed, 1420 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ee1e259..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1420 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Archivo } 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 archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "CriptoWallet AI - Minería Cripto con IA Avanzada", description: "Plataforma de minería de criptomonedas inteligente que recupera billeteras perdidas usando inteligencia artificial. Comienza hoy desde 199,99€/3 meses.", keywords: "minería cripto, AI, blockchain, bitcoin, ethereum, criptomonedas, minería segura", openGraph: { - title: "CriptoWallet AI - Minería Cripto Inteligente", description: "Recupera y mina criptomonedas con nuestra plataforma AI avanzada. Planes desde 199,99€.", siteName: "CriptoWallet AI", url: "https://criptowallet.ai", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUCmzT2x54IbmM5ltXUDXp4OMy/cryptocurrency-mining-dashboard-with-dar-1772649574334-45376c49.png", alt: "CriptoWallet AI Mining Dashboard", width: 1200, - height: 630, - }, - ], - }, - twitter: { - card: "summary_large_image", title: "CriptoWallet AI - Minería Cripto Inteligente", description: "Plataforma de minería avanzada con IA. Recupera billeteras perdidas.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AUCmzT2x54IbmM5ltXUDXp4OMy/futuristic-blockchain-network-visualizat-1772649574381-76e3b2df.png"], - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -