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 NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import ContactText from '@/components/sections/contact/ContactText';
|
import ContactText from '@/components/sections/contact/ContactText';
|
||||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||||
import { Sparkles } from "lucide-react";
|
|
||||||
|
|
||||||
export default function ContactPage() {
|
export default function ContactPage() {
|
||||||
return (
|
return (
|
||||||
|
|||||||
@@ -1,40 +1,26 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Archivo } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import "./styles/variables.css";
|
||||||
import Tag from "@/tag/Tag";
|
import "./styles/base.css";
|
||||||
|
|
||||||
const archivo = Archivo({
|
const inter = Inter({
|
||||||
variable: "--font-archivo", subsets: ["latin"],
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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: {
|
title: "CryptoLearn", description: "Master cryptocurrency trading with expert guidance"};
|
||||||
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."
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.variable}>
|
||||||
<body
|
{children}
|
||||||
className={`${archivo.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1402,7 +1388,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,23 +2,23 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
/* --background: #000a1a;;
|
/* --background: #ffffff;;
|
||||||
--card: #051433;;
|
--card: #f9f9f9;;
|
||||||
--foreground: #d9ebff;;
|
--foreground: #000612e6;;
|
||||||
--primary-cta: #2323ff;;
|
--primary-cta: #15479c;;
|
||||||
--secondary-cta: #051433;;
|
--secondary-cta: #f9f9f9;;
|
||||||
--accent: #2323ff;;
|
--accent: #e2e2e2;;
|
||||||
--background-accent: #0a40cc;; */
|
--background-accent: #c4c4c4;; */
|
||||||
|
|
||||||
--background: #000a1a;;
|
--background: #ffffff;;
|
||||||
--card: #051433;;
|
--card: #f9f9f9;;
|
||||||
--foreground: #d9ebff;;
|
--foreground: #000612e6;;
|
||||||
--primary-cta: #2323ff;;
|
--primary-cta: #15479c;;
|
||||||
--primary-cta-text: #000912;;
|
--primary-cta-text: #000912;;
|
||||||
--secondary-cta: #051433;;
|
--secondary-cta: #f9f9f9;;
|
||||||
--secondary-cta-text: #e6f0ff;;
|
--secondary-cta-text: #e6f0ff;;
|
||||||
--accent: #2323ff;;
|
--accent: #e2e2e2;;
|
||||||
--background-accent: #0a40cc;;
|
--background-accent: #c4c4c4;;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user