forked from emre/www_projectmycelium_com
- 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)
15 lines
251 B
TypeScript
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;
|