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" } ]} /> 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 ( + + + +
+ +
+ + +
+ ); +} 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"