Merge version_5_1782065146320 into main #6

Merged
bender merged 2 commits from version_5_1782065146320 into main 2026-06-21 18:07:43 +00:00
4 changed files with 21 additions and 0 deletions

View File

@@ -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>
);

View File

@@ -38,6 +38,8 @@ export default function Layout() {
{ name: "Products", href: "/products" },
{ name: "About", href: "/about" },
{ name: "Features", href: "/features" },
{ name: "Services", href: "/services" },

View 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>
</>
);
}

View File

@@ -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' },
];