From a8096b53d2dbb2d1d403ac3064ac8cec6f003e1b Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 18:17:36 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 2c5cdaa..10c9c44 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -18,8 +18,7 @@ export default function AboutPage() { const footerColumns = [ { - title: "Platform", - items: [ + title: "Platform", items: [ { label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Programs", href: "/programs" }, @@ -27,8 +26,7 @@ export default function AboutPage() { ], }, { - title: "Community", - items: [ + title: "Community", items: [ { label: "Join Us", href: "/join" }, { label: "Mentors", href: "#" }, { label: "Events", href: "#" }, @@ -36,8 +34,7 @@ export default function AboutPage() { ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Free Guides", href: "/resources" }, { label: "Video Library", href: "#" }, { label: "Blog", href: "#" }, @@ -45,8 +42,7 @@ export default function AboutPage() { ], }, { - title: "Connect", - items: [ + title: "Connect", items: [ { label: "Twitter", href: "https://twitter.com" }, { label: "LinkedIn", href: "https://linkedin.com" }, { label: "Instagram", href: "https://instagram.com" }, @@ -62,7 +58,7 @@ export default function AboutPage() { borderRadius="rounded" contentWidth="smallMedium" sizing="largeSizeMediumTitles" - background="fluid" + background="glowing-orb" cardStyle="soft-shadow" primaryButtonStyle="gradient" secondaryButtonStyle="layered" @@ -74,9 +70,7 @@ export default function AboutPage() { brandName="Learning Point" navItems={navItems} button={{ - text: "Join Community", - href: "/join", - }} + text: "Join Community", href: "/join"}} /> @@ -85,7 +79,7 @@ export default function AboutPage() { Date: Sat, 7 Mar 2026 18:17:37 +0000 Subject: [PATCH 2/5] Update src/app/join/page.tsx --- src/app/join/page.tsx | 48 +++++++++++++------------------------------ 1 file changed, 14 insertions(+), 34 deletions(-) diff --git a/src/app/join/page.tsx b/src/app/join/page.tsx index 2a627e6..250cda6 100644 --- a/src/app/join/page.tsx +++ b/src/app/join/page.tsx @@ -19,8 +19,7 @@ export default function JoinPage() { const footerColumns = [ { - title: "Platform", - items: [ + title: "Platform", items: [ { label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Programs", href: "/programs" }, @@ -28,8 +27,7 @@ export default function JoinPage() { ], }, { - title: "Community", - items: [ + title: "Community", items: [ { label: "Join Us", href: "/join" }, { label: "Mentors", href: "#" }, { label: "Events", href: "#" }, @@ -37,8 +35,7 @@ export default function JoinPage() { ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Free Guides", href: "/resources" }, { label: "Video Library", href: "#" }, { label: "Blog", href: "#" }, @@ -46,8 +43,7 @@ export default function JoinPage() { ], }, { - title: "Connect", - items: [ + title: "Connect", items: [ { label: "Twitter", href: "https://twitter.com" }, { label: "LinkedIn", href: "https://linkedin.com" }, { label: "Instagram", href: "https://instagram.com" }, @@ -63,7 +59,7 @@ export default function JoinPage() { borderRadius="rounded" contentWidth="smallMedium" sizing="largeSizeMediumTitles" - background="fluid" + background="glowing-orb" cardStyle="soft-shadow" primaryButtonStyle="gradient" secondaryButtonStyle="layered" @@ -77,9 +73,7 @@ export default function JoinPage() { id: item.id, }))} button={{ - text: "Join Community", - href: "/join", - }} + text: "Join Community", href: "/join"}} /> @@ -87,7 +81,7 @@ export default function JoinPage() { Date: Sat, 7 Mar 2026 18:17:37 +0000 Subject: [PATCH 3/5] Update src/app/page.tsx --- src/app/page.tsx | 151 ++++++++--------------------------------------- 1 file changed, 24 insertions(+), 127 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1cc7702..5c2892c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -22,8 +22,7 @@ export default function HomePage() { const footerColumns = [ { - title: "Platform", - items: [ + title: "Platform", items: [ { label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Programs", href: "/programs" }, @@ -31,8 +30,7 @@ export default function HomePage() { ], }, { - title: "Community", - items: [ + title: "Community", items: [ { label: "Join Us", href: "/join" }, { label: "Mentors", href: "#" }, { label: "Events", href: "#" }, @@ -40,8 +38,7 @@ export default function HomePage() { ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Free Guides", href: "/resources" }, { label: "Video Library", href: "#" }, { label: "Blog", href: "#" }, @@ -49,8 +46,7 @@ export default function HomePage() { ], }, { - title: "Connect", - items: [ + title: "Connect", items: [ { label: "Twitter", href: "https://twitter.com" }, { label: "LinkedIn", href: "https://linkedin.com" }, { label: "Instagram", href: "https://instagram.com" }, @@ -66,7 +62,7 @@ export default function HomePage() { borderRadius="rounded" contentWidth="smallMedium" sizing="largeSizeMediumTitles" - background="fluid" + background="glowing-orb" cardStyle="soft-shadow" primaryButtonStyle="gradient" secondaryButtonStyle="layered" @@ -78,9 +74,7 @@ export default function HomePage() { brandName="Learning Point" navItems={navItems} button={{ - text: "Join Community", - href: "/join", - }} + text: "Join Community", href: "/join"}} /> @@ -89,7 +83,7 @@ export default function HomePage() { Date: Sat, 7 Mar 2026 18:17:38 +0000 Subject: [PATCH 4/5] Update src/app/programs/page.tsx --- src/app/programs/page.tsx | 52 +++++++++------------------------------ 1 file changed, 12 insertions(+), 40 deletions(-) diff --git a/src/app/programs/page.tsx b/src/app/programs/page.tsx index 180c341..416408a 100644 --- a/src/app/programs/page.tsx +++ b/src/app/programs/page.tsx @@ -18,8 +18,7 @@ export default function ProgramsPage() { const footerColumns = [ { - title: "Platform", - items: [ + title: "Platform", items: [ { label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Programs", href: "/programs" }, @@ -27,8 +26,7 @@ export default function ProgramsPage() { ], }, { - title: "Community", - items: [ + title: "Community", items: [ { label: "Join Us", href: "/join" }, { label: "Mentors", href: "#" }, { label: "Events", href: "#" }, @@ -36,8 +34,7 @@ export default function ProgramsPage() { ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Free Guides", href: "/resources" }, { label: "Video Library", href: "#" }, { label: "Blog", href: "#" }, @@ -45,8 +42,7 @@ export default function ProgramsPage() { ], }, { - title: "Connect", - items: [ + title: "Connect", items: [ { label: "Twitter", href: "https://twitter.com" }, { label: "LinkedIn", href: "https://linkedin.com" }, { label: "Instagram", href: "https://instagram.com" }, @@ -62,7 +58,7 @@ export default function ProgramsPage() { borderRadius="rounded" contentWidth="smallMedium" sizing="largeSizeMediumTitles" - background="fluid" + background="glowing-orb" cardStyle="soft-shadow" primaryButtonStyle="gradient" secondaryButtonStyle="layered" @@ -80,7 +76,7 @@ export default function ProgramsPage() { Date: Sat, 7 Mar 2026 18:17:38 +0000 Subject: [PATCH 5/5] Update src/app/resources/page.tsx --- src/app/resources/page.tsx | 52 +++++++++----------------------------- 1 file changed, 12 insertions(+), 40 deletions(-) diff --git a/src/app/resources/page.tsx b/src/app/resources/page.tsx index fe8da64..47f0a08 100644 --- a/src/app/resources/page.tsx +++ b/src/app/resources/page.tsx @@ -18,8 +18,7 @@ export default function ResourcesPage() { const footerColumns = [ { - title: "Platform", - items: [ + title: "Platform", items: [ { label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Programs", href: "/programs" }, @@ -27,8 +26,7 @@ export default function ResourcesPage() { ], }, { - title: "Community", - items: [ + title: "Community", items: [ { label: "Join Us", href: "/join" }, { label: "Mentors", href: "#" }, { label: "Events", href: "#" }, @@ -36,8 +34,7 @@ export default function ResourcesPage() { ], }, { - title: "Resources", - items: [ + title: "Resources", items: [ { label: "Free Guides", href: "/resources" }, { label: "Video Library", href: "#" }, { label: "Blog", href: "#" }, @@ -45,8 +42,7 @@ export default function ResourcesPage() { ], }, { - title: "Connect", - items: [ + title: "Connect", items: [ { label: "Twitter", href: "https://twitter.com" }, { label: "LinkedIn", href: "https://linkedin.com" }, { label: "Instagram", href: "https://instagram.com" }, @@ -62,7 +58,7 @@ export default function ResourcesPage() { borderRadius="rounded" contentWidth="smallMedium" sizing="largeSizeMediumTitles" - background="fluid" + background="glowing-orb" cardStyle="soft-shadow" primaryButtonStyle="gradient" secondaryButtonStyle="layered" @@ -80,7 +76,7 @@ export default function ResourcesPage() {