17 Commits

Author SHA1 Message Date
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
4 changed files with 79 additions and 21 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>

58
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,58 @@
"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';
import { Sparkles } from "lucide-react";
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

@@ -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"

View File

@@ -2,23 +2,23 @@
/* Base units */
/* --vw is set by ThemeProvider */
/* --background: #000912;;
--card: #0a1a3d;;
--foreground: #e6f0ff;;
--primary-cta: #00d9ff;;
--secondary-cta: #0a1a3d;;
--accent: #00d9ff;;
--background-accent: #0055aa;; */
/* --background: #000a1a;;
--card: #051433;;
--foreground: #d9ebff;;
--primary-cta: #2323ff;;
--secondary-cta: #051433;;
--accent: #2323ff;;
--background-accent: #0a40cc;; */
--background: #000912;;
--card: #0a1a3d;;
--foreground: #e6f0ff;;
--primary-cta: #00d9ff;;
--background: #000a1a;;
--card: #051433;;
--foreground: #d9ebff;;
--primary-cta: #2323ff;;
--primary-cta-text: #000912;;
--secondary-cta: #0a1a3d;;
--secondary-cta: #051433;;
--secondary-cta-text: #e6f0ff;;
--accent: #00d9ff;;
--background-accent: #0055aa;;
--accent: #2323ff;;
--background-accent: #0a40cc;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);