Merge version_5 into main
Merge version_5 into main
This commit was merged in pull request #5.
This commit is contained in:
@@ -33,7 +33,7 @@ export default function BlogPage() {
|
|||||||
{ name: "Pricing", id: "pricing" },
|
{ name: "Pricing", id: "pricing" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "testimonials" },
|
||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "faq" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
58
src/app/contact/page.tsx
Normal file
58
src/app/contact/page.tsx
Normal 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>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -34,7 +34,7 @@ export default function CryptoLearnPage() {
|
|||||||
{ name: "Pricing", id: "pricing" },
|
{ name: "Pricing", id: "pricing" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "testimonials" },
|
||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "faq" },
|
||||||
{ name: "Contact", id: "contact" }
|
{ name: "Contact", id: "/contact" }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -116,7 +116,7 @@ export default function CryptoLearnPage() {
|
|||||||
{
|
{
|
||||||
id: "beginner", badge: "Popular", badgeIcon: Sparkles,
|
id: "beginner", badge: "Popular", badgeIcon: Sparkles,
|
||||||
price: "$29/month", subtitle: "Perfect for newcomers", buttons: [
|
price: "$29/month", subtitle: "Perfect for newcomers", buttons: [
|
||||||
{ text: "Get Started", href: "contact" }
|
{ text: "Get Started", href: "/contact" }
|
||||||
],
|
],
|
||||||
features: [
|
features: [
|
||||||
"5 beginner courses", "Weekly live sessions", "Community forum access", "Email support", "Certificate of completion"
|
"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,
|
id: "pro", badge: "Best Value", badgeIcon: Zap,
|
||||||
price: "$79/month", subtitle: "For active traders", buttons: [
|
price: "$79/month", subtitle: "For active traders", buttons: [
|
||||||
{ text: "Start Pro", href: "contact" }
|
{ text: "Start Pro", href: "/contact" }
|
||||||
],
|
],
|
||||||
features: [
|
features: [
|
||||||
"20+ advanced courses", "Daily live trading sessions", "1-on-1 mentoring", "Priority support", "Trading signals access", "Advanced analytics tools"
|
"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,
|
id: "elite", badge: "Premium", badgeIcon: Crown,
|
||||||
price: "$199/month", subtitle: "For serious investors", buttons: [
|
price: "$199/month", subtitle: "For serious investors", buttons: [
|
||||||
{ text: "Become Elite", href: "contact" }
|
{ text: "Become Elite", href: "/contact" }
|
||||||
],
|
],
|
||||||
features: [
|
features: [
|
||||||
"All courses + exclusive", "Personal crypto coach", "Private trading room", "VIP 24/7 support", "Custom portfolio analysis", "Early access to new content", "Networking events"
|
"All courses + exclusive", "Personal crypto coach", "Private trading room", "VIP 24/7 support", "Custom portfolio analysis", "Early access to new content", "Networking events"
|
||||||
|
|||||||
Reference in New Issue
Block a user