diff --git a/components/sections/TechnologyStack.tsx b/components/sections/TechnologyStack.tsx index 21153bb..6bfb182 100644 --- a/components/sections/TechnologyStack.tsx +++ b/components/sections/TechnologyStack.tsx @@ -3,12 +3,12 @@ import { motion } from 'framer-motion'; const technologies = [ - { name: 'Corestore', description: 'Decentralized storage' }, - { name: 'Hyperswarm', description: 'Peer discovery' }, - { name: 'Holesail', description: 'UDP hole-punching' }, - { name: 'Autopass', description: 'Secure invitations' }, - { name: 'Node.js', description: 'Runtime environment' }, - { name: 'Protomux', description: 'Channel multiplexing' }, + { name: 'Corestore', description: 'Decentralized storage', url: 'https://www.npmjs.com/package/corestore' }, + { name: 'Hyperswarm', description: 'Peer discovery', url: 'https://www.npmjs.com/package/hyperswarm' }, + { name: 'Holesail', description: 'Secure Tunnels', url: 'https://holesail.io' }, + { name: 'Autopass', description: 'Secure invitations', url: 'https://www.npmjs.com/package/autopass' }, + { name: 'Node.js', description: 'Runtime', url: 'https://nodejs.org' }, + { name: 'Protomux', description: 'Channel multiplexing', url: 'https://www.npmjs.com/package/protomux' }, ]; export default function TechnologyStack() { @@ -26,13 +26,16 @@ export default function TechnologyStack() {
{technologies.map((tech, index) => ( -

{tech.name} @@ -40,7 +43,7 @@ export default function TechnologyStack() {

{tech.description}

- + ))}