|
| 1 | +import Link from "next/link"; |
| 2 | +import { Address } from "@scaffold-ui/components"; |
| 3 | +import type { NextPage } from "next"; |
| 4 | + |
| 5 | +const AndrewPage: NextPage = () => { |
| 6 | + return ( |
| 7 | + <div className="min-h-screen bg-base-100"> |
| 8 | + {/* Hero Section */} |
| 9 | + <div className="container mx-auto px-6 py-16 max-w-5xl"> |
| 10 | + <div className="flex flex-col md:flex-row items-center gap-12"> |
| 11 | + {/* Left side - Avatar */} |
| 12 | + <div className="flex-shrink-0"> |
| 13 | + <div className="w-48 h-48 rounded-2xl bg-gradient-to-br from-primary/20 to-secondary/20 p-1"> |
| 14 | + <div className="w-full h-full rounded-2xl bg-base-100 flex items-center justify-center"> |
| 15 | + <div className="text-6xl font-bold text-primary">A</div> |
| 16 | + </div> |
| 17 | + </div> |
| 18 | + </div> |
| 19 | + |
| 20 | + {/* Right side - Info */} |
| 21 | + <div className="flex-1 text-center md:text-left"> |
| 22 | + <h1 className="text-5xl md:text-6xl font-bold mb-4 text-base-content">Andrew</h1> |
| 23 | + <p className="text-xl text-base-content/60 mb-6">Blockchain Developer & Web3 Architect</p> |
| 24 | + <div className="inline-block bg-base-200 rounded-lg px-4 py-2"> |
| 25 | + <Address address="0xBB1EaCf079A742953345693C9e3a7e83FB4A2f48" /> |
| 26 | + </div> |
| 27 | + </div> |
| 28 | + </div> |
| 29 | + |
| 30 | + {/* Divider */} |
| 31 | + <div className="my-16 border-t border-base-300"></div> |
| 32 | + |
| 33 | + {/* About Section */} |
| 34 | + <section className="mb-16"> |
| 35 | + <h2 className="text-3xl font-bold mb-6 text-primary">About</h2> |
| 36 | + <p className="text-lg text-base-content/80 leading-relaxed max-w-3xl"> |
| 37 | + Passionate about building the decentralized future. I focus on creating robust smart contracts and intuitive |
| 38 | + dApps that bridge the gap between blockchain technology and real-world applications. Always learning, always |
| 39 | + building. |
| 40 | + </p> |
| 41 | + </section> |
| 42 | + |
| 43 | + {/* Skills Section */} |
| 44 | + <section className="mb-16"> |
| 45 | + <h2 className="text-3xl font-bold mb-6 text-primary">Skills & Technologies</h2> |
| 46 | + <div className="grid grid-cols-2 md:grid-cols-4 gap-4"> |
| 47 | + {["Solidity", "Ethereum", "React", "TypeScript", "Node.js", "Hardhat", "Web3.js", "Smart Contracts"].map( |
| 48 | + skill => ( |
| 49 | + <div key={skill} className="px-4 py-3 bg-base-200 rounded-lg text-center font-medium"> |
| 50 | + {skill} |
| 51 | + </div> |
| 52 | + ), |
| 53 | + )} |
| 54 | + </div> |
| 55 | + </section> |
| 56 | + |
| 57 | + {/* Footer */} |
| 58 | + <footer className="pt-8 border-t border-base-300"> |
| 59 | + <p className="text-center text-base-content/50 text-sm"> |
| 60 | + Building with{" "} |
| 61 | + <Link href="https://buidlguidl.com" className="text-primary hover:underline" target="_blank"> |
| 62 | + BuidlGuidl |
| 63 | + </Link>{" "} |
| 64 | + • Batch 22 |
| 65 | + </p> |
| 66 | + </footer> |
| 67 | + </div> |
| 68 | + </div> |
| 69 | + ); |
| 70 | +}; |
| 71 | + |
| 72 | +export default AndrewPage; |
0 commit comments