7 Commits

Author SHA1 Message Date
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
2 changed files with 68 additions and 4 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>
);
}
}