19 Commits

Author SHA1 Message Date
edb0cbc953 Merge version_9 into main
Merge version_9 into main
2026-04-20 18:57:24 +00:00
120e657f65 Merge version_8 into main
Merge version_8 into main
2026-04-20 18:57:21 +00:00
0b77a9f059 Update theme colors 2026-04-20 18:57:21 +00:00
c54479879e Update theme colors 2026-04-20 18:57:18 +00:00
a1e79dd804 Update theme colors 2026-04-20 18:57:16 +00:00
94b559a78c Merge version_6 into main
Merge version_6 into main
2026-04-20 18:57:12 +00:00
aa8e53aa34 Update theme colors 2026-04-20 18:57:08 +00:00
ac8bce3806 Merge version_5 into main
Merge version_5 into main
2026-04-20 18:56:55 +00:00
aede03f7ca Update theme colors 2026-04-20 18:56:52 +00:00
b73d7cd5ad Merge version_4 into main
Merge version_4 into main
2026-04-20 18:56:13 +00:00
505b6dae25 Update theme colors 2026-04-20 18:56:10 +00:00
a52d2c35eb Merge version_3 into main
Merge version_3 into main
2026-04-20 18:54:05 +00:00
f3ba72fe08 Update src/app/about/page.tsx 2026-04-20 18:54:02 +00:00
4098c5dd9f Merge version_2 into main
Merge version_2 into main
2026-04-20 18:50:49 +00:00
ea5b1c9970 Update src/app/about/page.tsx 2026-04-20 18:50:43 +00:00
05d2a05005 Merge version_2 into main
Merge version_2 into main
2026-04-20 18:50:21 +00:00
1dc00d6450 Update src/app/page.tsx 2026-04-20 18:50:18 +00:00
0edd642230 Add src/app/about/page.tsx 2026-04-20 18:50:18 +00:00
be74fbfd1a Merge version_1 into main
Merge version_1 into main
2026-04-20 18:49:30 +00:00
3 changed files with 77 additions and 13 deletions

63
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,63 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import SplitAbout from '@/components/sections/about/SplitAbout';
import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Domains", id: "/#domains" },
{ name: "Testimonials", id: "/#testimonials" },
{ name: "FAQ", id: "/#faq" }
]}
brandName="Pathfinder CS"
/>
</div>
<div id="about" data-section="about" className="pt-32 pb-20">
<SplitAbout
textboxLayout="split"
title="Honest Assessment Report"
description="Our journey from zero to top in CS is defined by disciplined curiosity and grit. Below, we outline the realities of navigating the modern tech landscape."
bulletPoints={[
{ title: "The Zero-to-Top Blueprint", description: "Start with foundational logic rather than frameworks. Master CS fundamentals before specializing in high-growth stacks." },
{ title: "Potential Consequences", description: "High-performance tech paths can lead to significant mental fatigue; balancing innovation with sustainable habits is mandatory." },
{ title: "The AI Reality", description: "Software engineering is shifting from pure coding to architectural oversight. Adaptability is your greatest asset." },
{ title: "Ethical Responsibility", description: "The speed of innovation creates immense power; understanding the societal impacts of autonomous systems is part of every senior developer's duty." }
]}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/3d-rendering-orange-light-blue-lights-forming-circle-futuristic-concept_181624-59574.jpg"
logoText="Pathfinder CS"
columns={[
{ title: "Platform", items: [{ label: "Assessments", href: "/#features" }, { label: "Domains", href: "/#domains" }] },
{ title: "Support", items: [{ label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/#contact" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -33,7 +33,7 @@ export default function LandingPage() {
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "home" },
{ name: "Process", id: "about" },
{ name: "About", id: "about" },
{ name: "Domains", id: "domains" },
{ name: "Testimonials", id: "testimonials" },
{ name: "FAQ", id: "faq" }
@@ -87,6 +87,7 @@ export default function LandingPage() {
]}
imageSrc="http://img.b2bpic.net/free-photo/young-teen-girls-study-desk-attending-virtual-webinar-class_482257-123130.jpg"
mediaAnimation="slide-up"
buttons={[{ text: "Learn More", href: "/about" }]}
/>
</div>
@@ -189,12 +190,12 @@ export default function LandingPage() {
imageSrc="http://img.b2bpic.net/free-photo/3d-rendering-orange-light-blue-lights-forming-circle-futuristic-concept_181624-59574.jpg"
logoText="Pathfinder CS"
columns={[
{ title: "Platform", items: [{ label: "Assessments", href: "#features" }, { label: "Domains", href: "#domains" }] },
{ title: "Support", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }] }
{ title: "Platform", items: [{ label: "Assessments", href: "/#features" }, { label: "Domains", href: "/#domains" }] },
{ title: "Support", items: [{ label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/#contact" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -10,15 +10,15 @@
--accent: #ffffff;
--background-accent: #ffffff; */
--background: #f7f6f7;
--card: #ffffff;
--foreground: #25190c;
--primary-cta: #ff6207;
--primary-cta-text: #f7f6f7;
--secondary-cta: #ffffff;
--secondary-cta-text: #25190c;
--accent: #ffce93;
--background-accent: #e8cfa8;
--background: #ffffff;
--card: #f9f9f9;
--foreground: #120a00e6;
--primary-cta: #FF7B05;
--primary-cta-text: #ffffff;
--secondary-cta: #f9f9f9;
--secondary-cta-text: #120a00e6;
--accent: #e2e2e2;
--background-accent: #FF7B05;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);