Merge version_3_1782645122709 into main #2

Merged
bender merged 2 commits from version_3_1782645122709 into main 2026-06-28 11:13:49 +00:00
4 changed files with 29 additions and 0 deletions

View File

@@ -3,12 +3,14 @@ import Layout from './components/Layout';
import HomePage from './pages/HomePage';
import ProductsPage from "@/pages/ProductsPage";
import AboutPage from "@/pages/AboutPage";
export default function App() {
return (
<Routes>
<Route element={<Layout />}>
<Route path="/" element={<HomePage />} />
<Route path="/products" element={<ProductsPage />} />
<Route path="/about" element={<AboutPage />} />
</Route>
</Routes>
);

View File

@@ -36,6 +36,8 @@ export default function Layout() {
"href": "#metrics"
},
{ name: "Products", href: "/products" },
{ name: "About", href: "/about" },
];

24
src/pages/AboutPage.tsx Normal file
View File

@@ -0,0 +1,24 @@
import Button from "@/components/ui/Button";
import TextAnimation from "@/components/ui/TextAnimation";
import AboutParallax from "@/components/sections/about/AboutParallax";
import ScrollReveal from "@/components/ui/ScrollReveal";
export default function AboutPage() {
return (
<>
<div data-webild-section="AboutText"><section aria-label="About section" className="py-20"><div className="w-content-width mx-auto flex flex-col gap-2 items-center"><TextAnimation text="About Arrowhead" variant="fade" gradientText={false} tag="h2" className="text-6xl 2xl:text-7xl leading-[1.15] font-semibold text-center text-balance" /><div className="flex flex-wrap gap-3 justify-center mt-2 md:mt-3"><Button text="Become a Member" href="/join" variant="primary" /><Button text="Annual Report" href="/annual-report" variant="secondary" animationDelay={0.1} /></div></div></section></div>
<div data-webild-section="AboutTextSplit"><section aria-label="About section" className="py-20"><div className="flex flex-col gap-20 mx-auto w-content-width"><div className="flex flex-col md:flex-row gap-3 md:gap-15"><div className="w-full md:w-1/2"><TextAnimation text="About Arrowhead" variant="slide-up" gradientText={true} tag="h2" className="text-7xl 2xl:text-8xl leading-[1.15] font-semibold text-balance" /></div><div className="flex flex-col gap-2 w-full md:w-1/2"><TextAnimation key={0} text="As a not-for-profit financial cooperative, we believe in people helping people. We give back to our members through better rates, and to our communities with hundreds of volunteer hours." variant="slide-up" gradientText={false} tag="p" className="text-xl md:text-2xl leading-snug text-balance" />
<TextAnimation key={1} text="Our Roots: In 1949, San Bernardino County employees started a credit union to provide small loans. Today, we have evolved into a full-service institution that still operates as a cooperative." variant="slide-up" gradientText={false} tag="p" className="text-xl md:text-2xl leading-snug text-balance" />
<TextAnimation key={2} text="Join Us: We work hard to make our community better by bringing members the products they need. Membership is open to eligible associations, family members, and select employers." variant="slide-up" gradientText={false} tag="p" className="text-xl md:text-2xl leading-snug text-balance" /><div className="flex flex-wrap gap-3 mt-2 md:mt-3"><Button text="Become a Member" href="/join" variant="primary" /><Button text="Annual Report" href="/annual-report" variant="secondary" animationDelay={0.1} /></div></div></div><div className="w-full border-b border-foreground/5" /></div></section></div>
<div data-webild-section="AboutParallax"><AboutParallax
tag="About Arrowhead"
title="People Helping People Since 1949"
description="As a not-for-profit cooperative, we give back to our members through better rates, lower fees, and hundreds of volunteer hours in our communities."
badge="Our Story"
frontImageSrc="https://img.freepik.com/free-photo/group-volunteers-working-together_23-2149192211.jpg"
backImageSrc="https://img.freepik.com/free-photo/beautiful-scenery-mountains-covered-with-fog-during-sunset_181624-15994.jpg"
/></div>
<div data-webild-section="ContactCta"><section aria-label="Contact section" className="py-20"><div className="w-content-width mx-auto"><ScrollReveal variant="slide-up"><div className="flex flex-col items-center gap-8 md:gap-10 py-20 px-8 rounded card"><div className="flex flex-col items-center gap-2"><div className="px-3 py-1 mb-1 text-sm card rounded w-fit"><p>Join Arrowhead</p></div><TextAnimation text="We are working hard to make our communities a better place by bringing members the products they need with world-class service." variant="fade-blur" gradientText={true} tag="h2" className="md:max-w-8/10 text-5xl 2xl:text-6xl leading-[1.15] font-semibold text-center text-balance" /><div className="flex flex-wrap justify-center gap-3 mt-2 md:mt-3"><Button text="Become a Member" href="/join" variant="primary" /><Button text="View Annual Report" href="/annual-report" variant="secondary" animationDelay={0.1} /></div></div></div></ScrollReveal></div></section></div>
</>
);
}

View File

@@ -7,4 +7,5 @@ export interface Route {
export const routes: Route[] = [
{ path: '/', label: 'Home', pageFile: 'HomePage' },
{ path: '/products', label: 'Products', pageFile: 'ProductsPage' },
{ path: '/about', label: 'About', pageFile: 'AboutPage' },
];