export default { async fetch(request) { const html = ` John Lee | Portfolio

John Lee

Developer & Cloud Enthusiast

About Me

Passionate developer with a keen interest in cloud technology, web development, and network security.

Skills

HTML/CSS, JavaScript, React, Cloudflare Workers, Networking Basics.

Contact & Social

Email: johnlee3530@gmail.com

My GitHub Profile
`; return new Response(html, { headers: { 'content-type': 'text/html;charset=UTF-8' }, }); } }