feat: add nodes page with hosting information and benefits

- Created new NodePage with hero section explaining the Mycelium node network
- Added NodeBenefits component showcasing three key advantages of hosting nodes
- Integrated nodes route into navigation (header, footer, and routing configuration)
This commit is contained in:
2025-11-14 12:14:28 +01:00
parent 96a17a668a
commit 359afc3360
6 changed files with 187 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import React from 'react';
import { NodeHero } from './NodeHero';
import { NodeBenefits } from './NodeBenefits';
const NodePage: React.FC = () => {
return (
<>
<NodeHero />
<NodeBenefits />
</>
);
};
export default NodePage;