From f8a4ed13d9974dfa26e362edfa0907971aea31e1 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Feb 2026 17:34:12 +0000 Subject: [PATCH 1/3] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 61ec091..3896342 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -4,7 +4,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import ContactText from '@/components/sections/contact/ContactText'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; -import { Sparkles } from "lucide-react"; export default function ContactPage() { return ( From c1eb80ef90b5840e32058cee5110222e5aee7f68 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Feb 2026 17:34:13 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 39 ++++++++++++--------------------------- 1 file changed, 12 insertions(+), 27 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7af8296..be7b79c 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,40 +1,26 @@ import type { Metadata } from "next"; -import { Archivo } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const archivo = Archivo({ - variable: "--font-archivo", subsets: ["latin"], +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "CryptoLearn - Master Cryptocurrency Trading Online", description: "Learn cryptocurrency trading from industry experts. Comprehensive courses, live sessions, and 24/7 support. Start your crypto education journey today.", keywords: "cryptocurrency, trading, blockchain, crypto education, online courses", robots: { - index: true, - follow: true - }, - openGraph: { - title: "CryptoLearn - Master Cryptocurrency Trading", description: "Expert-led online crypto education. Learn trading strategies, blockchain technology, and secure asset management.", type: "website", siteName: "CryptoLearn" - }, - twitter: { - card: "summary_large_image", title: "CryptoLearn - Crypto Education Platform", description: "Master cryptocurrency trading with expert guidance and community support." - } -}; + title: "CryptoLearn", description: "Master cryptocurrency trading with expert guidance"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +