From 73fd4f8ba2555c2440d1fcd5ad07530bcd61ccb9 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Feb 2026 12:50:25 +0000 Subject: [PATCH 1/3] Update src/app/blog/page.tsx --- src/app/blog/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index 5dce0ef..3cfd4e4 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -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" } ]} /> -- 2.49.1 From e8edb9358f1a493489e02ce110eb50e183dbbf2a Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Feb 2026 12:50:26 +0000 Subject: [PATCH 2/3] Add src/app/contact/page.tsx --- src/app/contact/page.tsx | 58 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 src/app/contact/page.tsx diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..61ec091 --- /dev/null +++ b/src/app/contact/page.tsx @@ -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 ( + + + +
+ +
+ + +
+ ); +} -- 2.49.1 From f68d868fae85562b7bc02b9fc7d389cd9bba85ae Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 25 Feb 2026 12:50:27 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c802316..bef008e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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" } ]} /> @@ -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" -- 2.49.1