Building the Decentralized Future with NEAR Protocol

NEAR Protocol Ambassador | Web3 Developer | Community Builder | Speaker

50+ Community Events
10K+ Community Members
20+ Projects Built

About Me

👤

Passionate about Web3 & NEAR Protocol

I'm a dedicated NEAR Protocol Ambassador with a mission to accelerate the adoption of decentralized technologies. My work focuses on building vibrant communities, creating educational content, and developing innovative dApps on the NEAR blockchain.

With expertise in smart contracts, developer relations, and community management, I help projects and developers succeed in the NEAR ecosystem.

Core Skills

NEAR Protocol Rust JavaScript/TypeScript Smart Contracts Web3.js Developer Relations Community Building Technical Writing

Featured Projects

🚀

NEAR Developer Portal

Comprehensive documentation and tutorials for new NEAR developers, featuring interactive examples and step-by-step guides.

Documentation Education
Learn More →
💎

NEAR NFT Marketplace

Decentralized marketplace for trading NFTs on NEAR with low fees and instant transactions.

NFT Smart Contract
View Demo →
🌉

Cross-Chain Bridge

Seamless asset transfers between NEAR and other blockchains using NEAR Intents protocol.

Bridge DeFi
Explore →
🎓

NEAR Academy

Free educational platform offering courses on blockchain development, smart contracts, and Web3 fundamentals.

Education Community
Start Learning →

Speaking & Events

NEAR Summit

NEAR Summit 2024

Keynote: "The Future of Scalable Blockchain with NEAR Protocol"

📍 San Francisco, CA
ETH Denver

ETH Denver 2024

Workshop: "Building Cross-Chain dApps on NEAR"

📍 Denver, CO
Dev Con

NEAR DevCon 2023

Panel: "Web3 Developer Experience & Tooling"

📍 Remote

Get In Touch

Let's Work Together

I'm always excited to collaborate on NEAR ecosystem projects, speak at events, or help developers get started with Web3.

📧 ambassador@nearprotocol.com
💬 Telegram: @near_ambassador
🐦 Twitter: @NEARAmbassador
💻 GitHub: @nearambassador
``` --- ## 📁 File 2: `styles.css` (Styling) ```css /* NEAR Protocol Ambassador Website */ /* Modern, Clean Design with NEAR Brand Colors */ :root { --near-orange: #FF580D; --near-dark: #111111; --near-gray: #333333; --near-light-gray: #666666; --near-white: #FFFFFF; --near-bg-light: #F8F9FA; --near-bg-dark: #1A1A1A; --gradient-primary: linear-gradient(135deg, #FF580D 0%, #FF8C42 100%); --shadow-sm: 0 2px 8px rgba(0,0,0,0.1); --shadow-md: 0 4px 16px rgba(0,0,0,0.15); --shadow-lg: 0 8px 32px rgba(0,0,0,0.2); } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; line-height: 1.6; color: var(--near-dark); overflow-x: hidden; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } /* Navigation */ .navbar { background: var(--near-white); box-shadow: var(--shadow-sm); position: fixed; top: 0; width: 100%; z-index: 1000; padding: 1rem 0; } .navbar .container { display: flex; justify-content: space-between; align-items: center; } .nav-brand { display: flex; align-items: center; gap: 0.5rem; font-size: 1.5rem; font-weight: 700; color: var(--near-dark); } .near-logo { font-size: 2rem; } .nav-links { display: flex; list-style: none; gap: 2rem; } .nav-links a { text-decoration: none; color: var(--near-gray); font-weight: 500; transition: color 0.3s; } .nav-links a:hover { color: var(--near-orange); } /* Hero Section */ .hero { background: linear-gradient(135deg, var(--near-bg-dark) 0%, #2D2D2D 100%); color: var(--near-white); padding: 150px 0 100px; position: relative; overflow: hidden; } .hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 800px; height: 800px; background: radial-gradient(circle, rgba(255,88,13,0.1) 0%, transparent 70%); border-radius: 50%; } .hero-content { text-align: center; position: relative; z-index: 1; } .hero-title { font-size: 3.5rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.2; } .gradient-text { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero-subtitle { font-size: 1.3rem; margin-bottom: 2rem; color: rgba(255,255,255,0.9); } .hero-buttons { display: flex; gap: 1rem; justify-content: center; margin-bottom: 3rem; } .btn { padding: 1rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.3s; border: none; cursor: pointer; font-size: 1rem; } .btn-primary { background: var(--gradient-primary); color: var(--near-white); } .btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); } .btn-secondary { background: transparent; color: var(--near-white); border: 2px solid var(--near-orange);