Compare commits
6 Commits
version_1_
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| dcc0b41d74 | |||
|
|
c57dbc2ae1 | ||
|
|
e9e3ee6c93 | ||
| 98993a3648 | |||
|
|
7d2f13cd54 | ||
|
|
d238eb4a6a |
@@ -2,11 +2,15 @@ import { Routes, Route } from 'react-router-dom';
|
||||
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>
|
||||
);
|
||||
|
||||
@@ -34,7 +34,11 @@ export default function Layout() {
|
||||
{
|
||||
"name": "Metrics",
|
||||
"href": "#metrics"
|
||||
}
|
||||
},
|
||||
{ name: "Products", href: "/products" },
|
||||
{ name: "About", href: "/about" },
|
||||
|
||||
|
||||
];
|
||||
|
||||
return (
|
||||
|
||||
24
src/pages/AboutPage.tsx
Normal file
24
src/pages/AboutPage.tsx
Normal 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>
|
||||
</>
|
||||
);
|
||||
}
|
||||
21
src/pages/ProductsPage.tsx
Normal file
21
src/pages/ProductsPage.tsx
Normal file
@@ -0,0 +1,21 @@
|
||||
import Button from "@/components/ui/Button";
|
||||
import TextAnimation from "@/components/ui/TextAnimation";
|
||||
import ImageOrVideo from "@/components/ui/ImageOrVideo";
|
||||
import GridOrCarousel from "@/components/ui/GridOrCarousel";
|
||||
import ScrollReveal from "@/components/ui/ScrollReveal";
|
||||
|
||||
export default function ProductsPage() {
|
||||
return (
|
||||
<>
|
||||
<div data-webild-section="FeaturesMediaCards"><section aria-label="Features section" className="py-20"><div className="flex flex-col gap-8 md:gap-10"><div className="flex flex-col items-center w-content-width mx-auto gap-2"><div className="px-3 py-1 mb-1 text-sm card rounded w-fit"><p>Our Products</p></div><TextAnimation text="Financial Solutions for Every Stage" variant="fade-blur" gradientText={true} tag="h2" className="md:max-w-8/10 text-6xl 2xl:text-7xl leading-[1.15] font-semibold text-center text-balance" /><TextAnimation text="From daily banking to long-term investments, we offer competitive rates and personalized guidance to help Californians succeed." variant="fade-blur" gradientText={false} tag="p" className="md:max-w-7/10 text-lg md:text-xl leading-snug text-center text-balance" /><div className="flex flex-wrap justify-center gap-3 mt-2 md:mt-3"><Button text="Open an Account" href="/open-account" variant="primary" /><Button text="View Rates" href="/rates" variant="secondary" animationDelay={0.1} /></div></div><ScrollReveal variant="fade-blur"><GridOrCarousel><div key="Checking Accounts" className="flex flex-col gap-3 xl:gap-3.5 2xl:gap-4 p-3 xl:p-3.5 2xl:p-4 h-full card rounded"><div className="aspect-square rounded overflow-hidden button-secondary shadow shadow-foreground/5"><ImageOrVideo imageSrc="https://img.freepik.com/free-photo/young-woman-paying-online-with-credit-card-smartphone_23-2148764724.jpg" /></div><div className="flex flex-col gap-1 p-3 xl:p-3.5 2xl:p-4"><h3 className="text-2xl font-semibold leading-snug">Checking Accounts</h3><p className="text-base leading-snug">Everyday banking made easy with no hidden fees and 24/7 digital access.</p></div></div>
|
||||
<div key="Savings & Certificates" className="flex flex-col gap-3 xl:gap-3.5 2xl:gap-4 p-3 xl:p-3.5 2xl:p-4 h-full card rounded"><div className="aspect-square rounded overflow-hidden button-secondary shadow shadow-foreground/5"><ImageOrVideo imageSrc="https://img.freepik.com/free-photo/coins-glass-jar-with-plant-growing_1150-18055.jpg" /></div><div className="flex flex-col gap-1 p-3 xl:p-3.5 2xl:p-4"><h3 className="text-2xl font-semibold leading-snug">Savings & Certificates</h3><p className="text-base leading-snug">Watch your money grow securely with our high-yield savings and certificate options.</p></div></div>
|
||||
<div key="Credit Cards" className="flex flex-col gap-3 xl:gap-3.5 2xl:gap-4 p-3 xl:p-3.5 2xl:p-4 h-full card rounded"><div className="aspect-square rounded overflow-hidden button-secondary shadow shadow-foreground/5"><ImageOrVideo imageSrc="https://img.freepik.com/free-photo/close-up-hand-holding-credit-card_23-2149050774.jpg" /></div><div className="flex flex-col gap-1 p-3 xl:p-3.5 2xl:p-4"><h3 className="text-2xl font-semibold leading-snug">Credit Cards</h3><p className="text-base leading-snug">Earn rewards and build credit with cards designed for your lifestyle and goals.</p></div></div>
|
||||
<div key="Auto Loans" className="flex flex-col gap-3 xl:gap-3.5 2xl:gap-4 p-3 xl:p-3.5 2xl:p-4 h-full card rounded"><div className="aspect-square rounded overflow-hidden button-secondary shadow shadow-foreground/5"><ImageOrVideo imageSrc="https://img.freepik.com/free-photo/happy-couple-holding-keys-new-car_23-2148991444.jpg" /></div><div className="flex flex-col gap-1 p-3 xl:p-3.5 2xl:p-4"><h3 className="text-2xl font-semibold leading-snug">Auto Loans</h3><p className="text-base leading-snug">Hit the road faster with competitive rates and flexible terms for new or used vehicles.</p></div></div>
|
||||
<div key="Personal Loans" className="flex flex-col gap-3 xl:gap-3.5 2xl:gap-4 p-3 xl:p-3.5 2xl:p-4 h-full card rounded"><div className="aspect-square rounded overflow-hidden button-secondary shadow shadow-foreground/5"><ImageOrVideo imageSrc="https://img.freepik.com/free-photo/handsome-businessman-working-laptop-office_1303-21060.jpg" /></div><div className="flex flex-col gap-1 p-3 xl:p-3.5 2xl:p-4"><h3 className="text-2xl font-semibold leading-snug">Personal Loans</h3><p className="text-base leading-snug">Fund your next big project or consolidate debt with our competitive personal loan options.</p></div></div>
|
||||
<div key="Mortgages" className="flex flex-col gap-3 xl:gap-3.5 2xl:gap-4 p-3 xl:p-3.5 2xl:p-4 h-full card rounded"><div className="aspect-square rounded overflow-hidden button-secondary shadow shadow-foreground/5"><ImageOrVideo imageSrc="https://img.freepik.com/free-photo/happy-family-standing-front-their-new-house_23-2148764725.jpg" /></div><div className="flex flex-col gap-1 p-3 xl:p-3.5 2xl:p-4"><h3 className="text-2xl font-semibold leading-snug">Mortgages</h3><p className="text-base leading-snug">Find the perfect home loan to fit your California dream with our personalized guidance.</p></div></div>
|
||||
<div key="Home Equity" className="flex flex-col gap-3 xl:gap-3.5 2xl:gap-4 p-3 xl:p-3.5 2xl:p-4 h-full card rounded"><div className="aspect-square rounded overflow-hidden button-secondary shadow shadow-foreground/5"><ImageOrVideo imageSrc="https://img.freepik.com/free-photo/couple-renovating-their-home_23-2148813251.jpg" /></div><div className="flex flex-col gap-1 p-3 xl:p-3.5 2xl:p-4"><h3 className="text-2xl font-semibold leading-snug">Home Equity</h3><p className="text-base leading-snug">Tap into your home's value to finance renovations, education, or major life expenses.</p></div></div>
|
||||
<div key="Business Loans" className="flex flex-col gap-3 xl:gap-3.5 2xl:gap-4 p-3 xl:p-3.5 2xl:p-4 h-full card rounded"><div className="aspect-square rounded overflow-hidden button-secondary shadow shadow-foreground/5"><ImageOrVideo imageSrc="https://img.freepik.com/free-photo/two-business-partners-working-together-office_1303-21411.jpg" /></div><div className="flex flex-col gap-1 p-3 xl:p-3.5 2xl:p-4"><h3 className="text-2xl font-semibold leading-snug">Business Loans</h3><p className="text-base leading-snug">Fuel your company's growth with flexible financing solutions tailored for local businesses.</p></div></div>
|
||||
<div key="Investments & IRAs" className="flex flex-col gap-3 xl:gap-3.5 2xl:gap-4 p-3 xl:p-3.5 2xl:p-4 h-full card rounded"><div className="aspect-square rounded overflow-hidden button-secondary shadow shadow-foreground/5"><ImageOrVideo imageSrc="https://img.freepik.com/free-photo/business-people-discussing-charts_1150-1748.jpg" /></div><div className="flex flex-col gap-1 p-3 xl:p-3.5 2xl:p-4"><h3 className="text-2xl font-semibold leading-snug">Investments & IRAs</h3><p className="text-base leading-snug">Plan for a secure future with personalized wealth management and retirement accounts.</p></div></div></GridOrCarousel></ScrollReveal></div></section></div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -6,4 +6,6 @@ export interface Route {
|
||||
|
||||
export const routes: Route[] = [
|
||||
{ path: '/', label: 'Home', pageFile: 'HomePage' },
|
||||
{ path: '/products', label: 'Products', pageFile: 'ProductsPage' },
|
||||
{ path: '/about', label: 'About', pageFile: 'AboutPage' },
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user