Merge version_5_1782065146320 into main #6
@@ -5,6 +5,7 @@ import HomePage from './pages/HomePage';
|
||||
import ProductsPage from "@/pages/ProductsPage";
|
||||
import AboutPage from "@/pages/AboutPage";
|
||||
import FeaturesPage from "@/pages/FeaturesPage";
|
||||
import ServicesPage from "@/pages/ServicesPage";
|
||||
export default function App() {
|
||||
return (
|
||||
<Routes>
|
||||
@@ -13,6 +14,7 @@ export default function App() {
|
||||
<Route path="/products" element={<ProductsPage />} />
|
||||
<Route path="/about" element={<AboutPage />} />
|
||||
<Route path="/features" element={<FeaturesPage />} />
|
||||
<Route path="/services" element={<ServicesPage />} />
|
||||
</Route>
|
||||
</Routes>
|
||||
);
|
||||
|
||||
@@ -38,6 +38,8 @@ export default function Layout() {
|
||||
{ name: "Products", href: "/products" },
|
||||
{ name: "About", href: "/about" },
|
||||
{ name: "Features", href: "/features" },
|
||||
{ name: "Services", href: "/services" },
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
16
src/pages/ServicesPage.tsx
Normal file
16
src/pages/ServicesPage.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import FeaturesAlternatingSplit from "@/components/sections/features/FeaturesAlternatingSplit";
|
||||
|
||||
export default function ServicesPage() {
|
||||
return (
|
||||
<>
|
||||
<div data-webild-section="FeaturesAlternatingSplit"><FeaturesAlternatingSplit
|
||||
tag="Network Developments"
|
||||
title="Recent Aerodrome Developments"
|
||||
description="Explore the latest milestones driving Aerodrome's growth as the central liquidity hub for the Base network."
|
||||
primaryButton={{"text":"View All Updates","href":"/updates"}}
|
||||
secondaryButton={{"text":"Join Community","href":"/community"}}
|
||||
items={[{"title":"The Aero Platform Merger","description":"Merging with Velodrome to launch a unified ecosystem on MetaDEX, creating a joint liquidity hub for Ethereum and Base.","primaryButton":{"text":"Read About Aero","href":"/merger"},"imageSrc":"https://img.freepik.com/free-vector/gradient-network-connection-background_23-2148874030.jpg"},{"title":"Whale Accumulation","description":"Strong derivatives activity and whale accumulation have fueled recent price surges, marking a robust market recovery.","primaryButton":{"text":"View Market Data","href":"/analytics"},"imageSrc":"https://img.freepik.com/free-vector/business-growth-progress-arrow-chart-concept-design_1017-39961.jpg"},{"title":"Rigorous Security Audits","description":"Top-tier firms ChainSecurity and Sherlock have spearheaded comprehensive audits to future-proof our upcoming architecture.","primaryButton":{"text":"Read Audit Reports","href":"/security"},"imageSrc":"https://img.freepik.com/free-vector/shield-with-padlock-cyber-security-concept_1017-31581.jpg"}]}
|
||||
/></div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -9,4 +9,5 @@ export const routes: Route[] = [
|
||||
{ path: '/products', label: 'Products', pageFile: 'ProductsPage' },
|
||||
{ path: '/about', label: 'About', pageFile: 'AboutPage' },
|
||||
{ path: '/features', label: 'Features', pageFile: 'FeaturesPage' },
|
||||
{ path: '/services', label: 'Services', pageFile: 'ServicesPage' },
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user