Compare commits
28 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 18c4c765ee | |||
| c1eb80ef90 | |||
| f8a4ed13d9 | |||
| 352ab7f51c | |||
| f68d868fae | |||
| e8edb9358f | |||
| 73fd4f8ba2 | |||
| 42a0d09e0a | |||
| 609dde6ead | |||
| 3aa6a06226 | |||
| 5657463b6e | |||
| 82ad6890ad | |||
| e6f6850218 | |||
| 681ece8f43 | |||
| a2eb2e9cc8 | |||
| 1ab112bad6 | |||
| 2664e14dd7 | |||
| fae1724a61 | |||
| 8c1d15e3ef | |||
| 52fe18b025 | |||
| 27530e4372 | |||
| 2f81494bc8 | |||
| c2075e92d9 | |||
| 613e09c3e8 | |||
| ecdd5aefa7 | |||
| c4c96cea80 | |||
| bd8c6b0fb5 | |||
| d390571b52 |
@@ -33,7 +33,7 @@ export default function BlogPage() {
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -68,4 +68,4 @@ export default function BlogPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
57
src/app/contact/page.tsx
Normal file
57
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,57 @@
|
||||
"use client";
|
||||
|
||||
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';
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="compact"
|
||||
sizing="large"
|
||||
background="floatingGradient"
|
||||
cardStyle="subtle-shadow"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
brandName="CryptoLearn"
|
||||
navItems={[
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
text="Ready to start your crypto learning journey? Join thousands of students who've transformed their financial future through our expert-led education."
|
||||
animationType="entrance-slide"
|
||||
buttons={[
|
||||
{ text: "Enroll Now", href: "pricing" },
|
||||
{ text: "Learn More", href: "features" }
|
||||
]}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="CryptoLearn"
|
||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
||||
rightLink={{ text: "Terms of Service", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
"use client"
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
@@ -34,7 +34,7 @@ export default function CryptoLearnPage() {
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "Testimonials", id: "testimonials" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -48,8 +48,8 @@ export default function CryptoLearnPage() {
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
buttons={[
|
||||
{ text: "Start Learning", href: "pricing" },
|
||||
{ text: "View Courses", href: "features" }
|
||||
{ text: "Start Learning Now", href: "pricing" },
|
||||
{ text: "Explore Courses", href: "features" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
mediaItems={[
|
||||
@@ -116,7 +116,7 @@ export default function CryptoLearnPage() {
|
||||
{
|
||||
id: "beginner", badge: "Popular", badgeIcon: Sparkles,
|
||||
price: "$29/month", subtitle: "Perfect for newcomers", buttons: [
|
||||
{ text: "Get Started", href: "contact" }
|
||||
{ text: "Get Started", href: "/contact" }
|
||||
],
|
||||
features: [
|
||||
"5 beginner courses", "Weekly live sessions", "Community forum access", "Email support", "Certificate of completion"
|
||||
@@ -125,7 +125,7 @@ export default function CryptoLearnPage() {
|
||||
{
|
||||
id: "pro", badge: "Best Value", badgeIcon: Zap,
|
||||
price: "$79/month", subtitle: "For active traders", buttons: [
|
||||
{ text: "Start Pro", href: "contact" }
|
||||
{ text: "Start Pro", href: "/contact" }
|
||||
],
|
||||
features: [
|
||||
"20+ advanced courses", "Daily live trading sessions", "1-on-1 mentoring", "Priority support", "Trading signals access", "Advanced analytics tools"
|
||||
@@ -134,7 +134,7 @@ export default function CryptoLearnPage() {
|
||||
{
|
||||
id: "elite", badge: "Premium", badgeIcon: Crown,
|
||||
price: "$199/month", subtitle: "For serious investors", buttons: [
|
||||
{ text: "Become Elite", href: "contact" }
|
||||
{ text: "Become Elite", href: "/contact" }
|
||||
],
|
||||
features: [
|
||||
"All courses + exclusive", "Personal crypto coach", "Private trading room", "VIP 24/7 support", "Custom portfolio analysis", "Early access to new content", "Networking events"
|
||||
@@ -234,4 +234,4 @@ export default function CryptoLearnPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -235,4 +235,4 @@ function ProductPageContent({ params }: ProductPageProps) {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -112,4 +112,4 @@ export default function ShopPage() {
|
||||
<ShopPageContent />
|
||||
</Suspense>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,23 +2,23 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
/* --background: #000802;;
|
||||
--card: #0b1a0b;;
|
||||
--foreground: #e6ffe6;;
|
||||
--primary-cta: #80da9b;;
|
||||
--secondary-cta: #07170b;;
|
||||
--accent: #38714a;;
|
||||
--background-accent: #2c6541;; */
|
||||
/* --background: #ffffff;;
|
||||
--card: #f9f9f9;;
|
||||
--foreground: #000612e6;;
|
||||
--primary-cta: #15479c;;
|
||||
--secondary-cta: #f9f9f9;;
|
||||
--accent: #e2e2e2;;
|
||||
--background-accent: #c4c4c4;; */
|
||||
|
||||
--background: #000802;;
|
||||
--card: #0b1a0b;;
|
||||
--foreground: #e6ffe6;;
|
||||
--primary-cta: #80da9b;;
|
||||
--primary-cta-text: #000802;;
|
||||
--secondary-cta: #07170b;;
|
||||
--secondary-cta-text: #e6ffe6;;
|
||||
--accent: #38714a;;
|
||||
--background-accent: #2c6541;;
|
||||
--background: #ffffff;;
|
||||
--card: #f9f9f9;;
|
||||
--foreground: #000612e6;;
|
||||
--primary-cta: #15479c;;
|
||||
--primary-cta-text: #000912;;
|
||||
--secondary-cta: #f9f9f9;;
|
||||
--secondary-cta-text: #e6f0ff;;
|
||||
--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