forked from emre/www_projectmycelium_com
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:
14
src/pages/node/NodePage.tsx
Normal file
14
src/pages/node/NodePage.tsx
Normal 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;
|
||||
Reference in New Issue
Block a user