28 Commits

Author SHA1 Message Date
18c4c765ee Update src/app/styles/variables.css 2026-02-25 17:34:14 +00:00
c1eb80ef90 Update src/app/layout.tsx 2026-02-25 17:34:13 +00:00
f8a4ed13d9 Update src/app/contact/page.tsx 2026-02-25 17:34:12 +00:00
352ab7f51c Merge version_5 into main
Merge version_5 into main
2026-02-25 12:50:32 +00:00
f68d868fae Update src/app/page.tsx 2026-02-25 12:50:27 +00:00
e8edb9358f Add src/app/contact/page.tsx 2026-02-25 12:50:26 +00:00
73fd4f8ba2 Update src/app/blog/page.tsx 2026-02-25 12:50:25 +00:00
42a0d09e0a Merge version_4 into main
Merge version_4 into main
2026-02-25 12:48:12 +00:00
609dde6ead Update src/app/shop/page.tsx 2026-02-25 12:48:08 +00:00
3aa6a06226 Update src/app/shop/[id]/page.tsx 2026-02-25 12:48:07 +00:00
5657463b6e Update src/app/page.tsx 2026-02-25 12:48:07 +00:00
82ad6890ad Update src/app/layout.tsx 2026-02-25 12:48:05 +00:00
e6f6850218 Update src/app/blog/page.tsx 2026-02-25 12:48:04 +00:00
681ece8f43 Merge version_3 into main
Merge version_3 into main
2026-02-25 12:42:14 +00:00
a2eb2e9cc8 Update src/app/styles/variables.css 2026-02-25 12:42:09 +00:00
1ab112bad6 Update src/app/shop/page.tsx 2026-02-25 12:42:09 +00:00
2664e14dd7 Update src/app/shop/[id]/page.tsx 2026-02-25 12:42:08 +00:00
fae1724a61 Update src/app/page.tsx 2026-02-25 12:42:07 +00:00
8c1d15e3ef Update src/app/layout.tsx 2026-02-25 12:42:06 +00:00
52fe18b025 Update src/app/blog/page.tsx 2026-02-25 12:42:05 +00:00
27530e4372 Merge version_2 into main
Merge version_2 into main
2026-02-25 12:36:51 +00:00
2f81494bc8 Update src/app/styles/variables.css 2026-02-25 12:36:47 +00:00
c2075e92d9 Update src/app/shop/page.tsx 2026-02-25 12:36:46 +00:00
613e09c3e8 Update src/app/shop/[id]/page.tsx 2026-02-25 12:36:46 +00:00
ecdd5aefa7 Update src/app/page.tsx 2026-02-25 12:36:45 +00:00
c4c96cea80 Update src/app/layout.tsx 2026-02-25 12:36:44 +00:00
bd8c6b0fb5 Update src/app/blog/page.tsx 2026-02-25 12:36:43 +00:00
d390571b52 Merge version_1 into main
Merge version_1 into main
2026-02-25 12:10:28 +00:00
7 changed files with 98 additions and 56 deletions

View File

@@ -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
View 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>
);
}

View File

@@ -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>
);
}
}

View File

@@ -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>
);
}
}

View File

@@ -235,4 +235,4 @@ function ProductPageContent({ params }: ProductPageProps) {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -112,4 +112,4 @@ export default function ShopPage() {
<ShopPageContent />
</Suspense>
);
}
}

View File

@@ -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);