Merge version_6 into main
Merge version_6 into main
This commit was merged in pull request #6.
This commit is contained in:
@@ -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 (
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${archivo.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.variable}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1402,7 +1388,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -2,23 +2,23 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
/* --background: #000a1a;;
|
||||
--card: #051433;;
|
||||
--foreground: #d9ebff;;
|
||||
--primary-cta: #2323ff;;
|
||||
--secondary-cta: #051433;;
|
||||
--accent: #2323ff;;
|
||||
--background-accent: #0a40cc;; */
|
||||
/* --background: #ffffff;;
|
||||
--card: #f9f9f9;;
|
||||
--foreground: #000612e6;;
|
||||
--primary-cta: #15479c;;
|
||||
--secondary-cta: #f9f9f9;;
|
||||
--accent: #e2e2e2;;
|
||||
--background-accent: #c4c4c4;; */
|
||||
|
||||
--background: #000a1a;;
|
||||
--card: #051433;;
|
||||
--foreground: #d9ebff;;
|
||||
--primary-cta: #2323ff;;
|
||||
--background: #ffffff;;
|
||||
--card: #f9f9f9;;
|
||||
--foreground: #000612e6;;
|
||||
--primary-cta: #15479c;;
|
||||
--primary-cta-text: #000912;;
|
||||
--secondary-cta: #051433;;
|
||||
--secondary-cta: #f9f9f9;;
|
||||
--secondary-cta-text: #e6f0ff;;
|
||||
--accent: #2323ff;;
|
||||
--background-accent: #0a40cc;;
|
||||
--accent: #e2e2e2;;
|
||||
--background-accent: #c4c4c4;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user