Merge version_2_1782644919919 into main #2
@@ -2,11 +2,13 @@ import { Routes, Route } from 'react-router-dom';
|
||||
import Layout from './components/Layout';
|
||||
import HomePage from './pages/HomePage';
|
||||
|
||||
import ProductsPage from "@/pages/ProductsPage";
|
||||
export default function App() {
|
||||
return (
|
||||
<Routes>
|
||||
<Route element={<Layout />}>
|
||||
<Route path="/" element={<HomePage />} />
|
||||
<Route path="/products" element={<ProductsPage />} />
|
||||
</Route>
|
||||
</Routes>
|
||||
);
|
||||
|
||||
@@ -27,7 +27,9 @@ export default function Layout() {
|
||||
},
|
||||
{
|
||||
"name": "Metrics", "href": "#metrics"
|
||||
}
|
||||
},
|
||||
{ name: "Products", href: "/products" },
|
||||
|
||||
];
|
||||
|
||||
return (
|
||||
|
||||
15
src/pages/ProductsPage.tsx
Normal file
15
src/pages/ProductsPage.tsx
Normal file
@@ -0,0 +1,15 @@
|
||||
import FeaturesAlternatingSplit from "@/components/sections/features/FeaturesAlternatingSplit";
|
||||
|
||||
export default function ProductsPage() {
|
||||
return (
|
||||
<>
|
||||
<div data-webild-section="FeaturesAlternatingSplit"><FeaturesAlternatingSplit
|
||||
tag="Our Products"
|
||||
title="Solutions for Every Stage of Life"
|
||||
description="As a not-for-profit credit union, we offer lower rates, higher savings, and genuine support across all our banking products."
|
||||
primaryButton={{"text":"Become a Member","href":"/join"}}
|
||||
items={[{"title":"Checking & Savings","description":"Build your financial foundation with high-yield savings and fee-free checking accounts designed for your everyday needs.","imageSrc":"https://img.freepik.com/free-photo/young-woman-using-mobile-phone-while-holding-credit-card_23-2148175593.jpg","primaryButton":{"text":"Explore Accounts","href":"/checking-savings"}},{"title":"Loans & Credit Cards","description":"Finance your dreams with our low-rate auto loans, flexible mortgages, and rewards credit cards.","imageSrc":"https://img.freepik.com/free-photo/couple-meeting-with-financial-advisor_23-2148175620.jpg","primaryButton":{"text":"View Rates","href":"/loans-credit"}},{"title":"Retirement & Investing","description":"Plan for tomorrow with expert guidance, IRAs, and investment portfolios tailored to your long-term goals.","imageSrc":"https://img.freepik.com/free-photo/senior-couple-looking-laptop-together_23-2148175645.jpg","primaryButton":{"text":"Start Investing","href":"/retirement-investing"}},{"title":"Insurance Products","description":"Protect what matters most with comprehensive auto, home, and life insurance policies at member-exclusive rates.","imageSrc":"https://img.freepik.com/free-photo/family-with-house-model-keys_23-2148175660.jpg","primaryButton":{"text":"Get a Quote","href":"/insurance"}}]}
|
||||
/></div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -6,4 +6,5 @@ export interface Route {
|
||||
|
||||
export const routes: Route[] = [
|
||||
{ path: '/', label: 'Home', pageFile: 'HomePage' },
|
||||
{ path: '/products', label: 'Products', pageFile: 'ProductsPage' },
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user