From d39ce67894cd9492ac64ac12da39dd630e6c9b51 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 11:44:26 +0000 Subject: [PATCH 1/5] Update src/app/about/page.tsx --- src/app/about/page.tsx | 48 ++++++++++++++---------------------------- 1 file changed, 16 insertions(+), 32 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index ad23ee9..efdfef0 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -7,39 +7,31 @@ import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import MediaAbout from '@/components/sections/about/MediaAbout'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -export default function LandingPage() { +export default function AboutPage() { return ( @@ -55,9 +47,7 @@ export default function LandingPage() {
@@ -65,14 +55,8 @@ export default function LandingPage() {
-- 2.49.1 From 86629a92254d63a8394ea5dca90cd7d94a89a1c9 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 11:44:27 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 39b1711..d35e7a8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -11,8 +11,8 @@ import { Mulish } from "next/font/google"; export const metadata: Metadata = { - title: 'SSSI | South Sudan Scholarship Initiative', - description: 'Connecting South Sudanese students to global education and promoting peaceful societies.', + title: 'SSSI | South Sudanese Students Initiative', + description: 'Empowering South Sudanese students through education, mentorship, and peace advocacy.', openGraph: { "title": "SSSI | Global Opportunities", "siteName": "South Sudan Scholarship Initiative" -- 2.49.1 From 30545805259963dbdc83e41cdde521f0e5234485 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 11:44:27 +0000 Subject: [PATCH 3/5] Update src/app/page.tsx --- src/app/page.tsx | 139 +++++++++-------------------------------------- 1 file changed, 27 insertions(+), 112 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 9803c56..85d194e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,7 +8,6 @@ import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import ProductDetailCard from '@/components/ecommerce/productDetail/ProductDetailCard'; export default function LandingPage() { return ( @@ -16,75 +15,41 @@ export default function LandingPage() { defaultButtonVariant="hover-bubble" defaultTextAnimation="entrance-slide" borderRadius="soft" + contentWidth="medium" + sizing="medium" + background="circleGradient" + cardStyle="glass-elevated" + primaryButtonStyle="gradient" + secondaryButtonStyle="glass" + headingFontWeight="normal" >
-
- -
-
-- 2.49.1 From ec83920310464730632d74ab28d333d85f91def8 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 11:44:28 +0000 Subject: [PATCH 4/5] Update src/app/programs/page.tsx --- src/app/programs/page.tsx | 84 +++++++++------------------------------ 1 file changed, 18 insertions(+), 66 deletions(-) diff --git a/src/app/programs/page.tsx b/src/app/programs/page.tsx index b2e7a99..78b1f17 100644 --- a/src/app/programs/page.tsx +++ b/src/app/programs/page.tsx @@ -7,39 +7,31 @@ import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; -export default function LandingPage() { +export default function ProgramsPage() { return ( @@ -49,40 +41,8 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={true} plans={[ - { - id: "p1", - title: "Scholarship Prep", - period: "Full Course", - price: "Access", - features: [ - "University research", - "Essay drafting", - "Interview prep", - ], - button: { - text: "Apply", - href: "/apply", - }, - imageSrc: "http://img.b2bpic.net/free-photo/front-view-friends-high-five_23-2148576836.jpg", - imageAlt: "Front view friends high five", - }, - { - id: "p2", - title: "Peace Leadership", - period: "Ongoing", - price: "Inclusive", - features: [ - "Conflict training", - "Civic engagement", - "Mentorship", - ], - button: { - text: "Join", - href: "/apply", - }, - imageSrc: "http://img.b2bpic.net/free-photo/cheerful-man-sitting-ramp_23-2147678211.jpg?_wi=2", - imageAlt: "Front view friends high five", - }, + { id: "p1", title: "Scholarship Prep", period: "Full Course", price: "Access", features: ["University research", "Essay drafting", "Interview prep"], button: { text: "Apply", href: "/apply" }, imageSrc: "http://img.b2bpic.net/free-photo/front-view-friends-high-five_23-2148576836.jpg" }, + { id: "p2", title: "Peace Leadership", period: "Ongoing", price: "Inclusive", features: ["Conflict training", "Civic engagement", "Mentorship"], button: { text: "Join", href: "/apply" }, imageSrc: "http://img.b2bpic.net/free-photo/cheerful-man-sitting-ramp_23-2147678211.jpg" } ]} title="Our Programs" description="Detailing our core academic and peace-focused initiatives." @@ -92,9 +52,7 @@ export default function LandingPage() {
@@ -102,14 +60,8 @@ export default function LandingPage() {
-- 2.49.1 From 31955f65e028b30ccc4ccaadf876dcee8702387e Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 18 Apr 2026 11:44:28 +0000 Subject: [PATCH 5/5] Update src/app/stories/page.tsx --- src/app/stories/page.tsx | 70 +++++++++++----------------------------- 1 file changed, 18 insertions(+), 52 deletions(-) diff --git a/src/app/stories/page.tsx b/src/app/stories/page.tsx index f7b3ebe..8e69708 100644 --- a/src/app/stories/page.tsx +++ b/src/app/stories/page.tsx @@ -7,39 +7,31 @@ import ContactText from '@/components/sections/contact/ContactText'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -export default function LandingPage() { +export default function StoriesPage() { return ( @@ -51,26 +43,8 @@ export default function LandingPage() { title="Student Success" description="Inspiring journeys from our community." blogs={[ - { - id: "s1", - category: "Success", - title: "Achieving Dreams", - excerpt: "One student's journey to university.", - imageSrc: "http://img.b2bpic.net/free-photo/female-graduate-keeping-hands-chin-academic-dress-looking-merry-front-view_176474-51233.jpg", - authorName: "Staff", - authorAvatar: "http://img.b2bpic.net/free-photo/group-young-people_53876-31463.jpg", - date: "2024", - }, - { - id: "s2", - category: "Growth", - title: "Building Peace", - excerpt: "Leadership in action.", - imageSrc: "http://img.b2bpic.net/free-photo/happy-student-graduation-cap_93675-133782.jpg", - authorName: "Staff", - authorAvatar: "http://img.b2bpic.net/free-photo/rad-passion-indy-soulful-spirit_53876-21291.jpg", - date: "2024", - }, + { id: "s1", category: "Success", title: "Achieving Dreams", excerpt: "One student's journey to university.", imageSrc: "http://img.b2bpic.net/free-photo/female-graduate-keeping-hands-chin-academic-dress-looking-merry-front-view_176474-51233.jpg", authorName: "Staff", authorAvatar: "http://img.b2bpic.net/free-photo/group-young-people_53876-31463.jpg", date: "2024" }, + { id: "s2", category: "Growth", title: "Building Peace", excerpt: "Leadership in action.", imageSrc: "http://img.b2bpic.net/free-photo/happy-student-graduation-cap_93675-133782.jpg", authorName: "Staff", authorAvatar: "http://img.b2bpic.net/free-photo/rad-passion-indy-soulful-spirit_53876-21291.jpg", date: "2024" } ]} /> @@ -78,9 +52,7 @@ export default function LandingPage() {
@@ -88,14 +60,8 @@ export default function LandingPage() {
-- 2.49.1