diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 59d8f12..5cb6dc2 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -2,12 +2,13 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
+import SplitAbout from '@/components/sections/about/SplitAbout';
+import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
-import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
-import TextAbout from '@/components/sections/about/TextAbout';
+import { Target, Users, BookOpen } from "lucide-react";
-export default function LandingPage() {
+export default function AboutPage() {
return (
-
-
-
+
-
-
-
+
+
+
-
-
-
+
+
+
-
+
);
-}
+}
\ No newline at end of file
diff --git a/src/app/learn/page.tsx b/src/app/learn/page.tsx
index 624b06e..aa4825f 100644
--- a/src/app/learn/page.tsx
+++ b/src/app/learn/page.tsx
@@ -2,11 +2,9 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
-import BlogCardTwo from '@/components/sections/blog/BlogCardTwo';
-import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
-import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
-import { DollarSign, PieChart, ShieldCheck } from "lucide-react";
+import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
+import BlogCardOne from '@/components/sections/blog/BlogCardOne';
export default function LearnPage() {
return (
@@ -34,41 +32,20 @@ export default function LearnPage() {
/>
-
-
+
-
-
-
-
@@ -77,25 +54,9 @@ export default function LearnPage() {
@@ -103,4 +64,4 @@ export default function LearnPage() {
);
-}
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 3e15ea2..2cdfb83 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -30,17 +30,11 @@ export default function LandingPage() {
@@ -50,97 +44,51 @@ export default function LandingPage() {
@@ -153,19 +101,13 @@ export default function LandingPage() {
features={[
{
icon: BookOpen,
- title: "Weekly Analysis",
- description: "Stay ahead of market trends with our concise weekly financial breakdown.",
- },
+ title: "Weekly Analysis", description: "Stay ahead of market trends with our concise weekly financial breakdown."},
{
icon: TrendingUp,
- title: "Learning Modules",
- description: "Deep-dive into investment, savings, and personal wealth management strategies.",
- },
+ title: "Learning Modules", description: "Deep-dive into investment, savings, and personal wealth management strategies."},
{
icon: Award,
- title: "Expert Guidance",
- description: "Access curated advice and structured content from seasoned financial professionals.",
- },
+ title: "Expert Guidance", description: "Access curated advice and structured content from seasoned financial professionals."},
]}
title="Build Your Financial Knowledge"
description="We provide the tools and resources you need to take control of your financial journey."
@@ -181,15 +123,9 @@ export default function LandingPage() {
faqsAnimation="slide-up"
faqs={[
{
- id: "1",
- title: "How do I start?",
- content: "Just sign up and jump into any of our foundational modules.",
- },
+ id: "1", title: "How do I start?", content: "Just sign up and jump into any of our foundational modules."},
{
- id: "2",
- title: "Is it free?",
- content: "We offer several free modules and premium insights for subscribers.",
- },
+ id: "2", title: "Is it free?", content: "We offer several free modules and premium insights for subscribers."},
]}
/>
@@ -201,12 +137,7 @@ export default function LandingPage() {
title="Recognized by Industry Leaders"
description="Our educational approach is trusted by professionals everywhere."
names={[
- "FinTech Weekly",
- "Global Finance Today",
- "InvestNow",
- "AlphaInsights",
- "ModernWealth",
- ]}
+ "FinTech Weekly", "Global Finance Today", "InvestNow", "AlphaInsights", "ModernWealth"]}
/>
@@ -218,22 +149,14 @@ export default function LandingPage() {
imageSrc="http://img.b2bpic.net/free-photo/table-financial-manager_1098-18260.jpg"
inputs={[
{
- name: "name",
- type: "text",
- placeholder: "Name",
- required: true,
+ name: "name", type: "text", placeholder: "Name", required: true,
},
{
- name: "email",
- type: "email",
- placeholder: "Email",
- required: true,
+ name: "email", type: "email", placeholder: "Email", required: true,
},
]}
textarea={{
- name: "message",
- placeholder: "Tell us how we can help",
- rows: 4,
+ name: "message", placeholder: "Tell us how we can help", rows: 4,
required: true,
}}
/>
@@ -244,46 +167,29 @@ export default function LandingPage() {
logoText="FinLearn"
columns={[
{
- title: "Platform",
- items: [
+ title: "Platform", items: [
{
- label: "Home",
- href: "/",
- },
+ label: "Home", href: "/"},
{
- label: "Learn",
- href: "/learn",
- },
+ label: "Learn", href: "/learn"},
{
- label: "About",
- href: "/about",
- },
+ label: "About", href: "/about"},
],
},
{
- title: "Resources",
- items: [
+ title: "Resources", items: [
{
- label: "Market Blog",
- href: "#",
- },
+ label: "Market Blog", href: "/blog"},
{
- label: "Guides",
- href: "#",
- },
+ label: "Guides", href: "/guides"},
],
},
{
- title: "Legal",
- items: [
+ title: "Legal", items: [
{
- label: "Privacy Policy",
- href: "#",
- },
+ label: "Privacy Policy", href: "/privacy"},
{
- label: "Terms of Service",
- href: "#",
- },
+ label: "Terms of Service", href: "/terms"},
],
},
]}
@@ -293,4 +199,4 @@ export default function LandingPage() {
);
-}
+}
\ No newline at end of file