Files
www_projectmycelium_com/src/pages/node/NodePage.tsx
sasha-astiadi 359afc3360 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)
2025-11-14 12:14:28 +01:00

15 lines
251 B
TypeScript

import React from 'react';
import { NodeHero } from './NodeHero';
import { NodeBenefits } from './NodeBenefits';
const NodePage: React.FC = () => {
return (
<>
<NodeHero />
<NodeBenefits />
</>
);
};
export default NodePage;