Skip to content

Commit bfa3a93

Browse files
authored
Create page.tsx
1 parent 0ca922d commit bfa3a93

File tree

1 file changed

+75
-0
lines changed
  • packages/nextjs/app/builders/0xbb1eacf079a742953345693c9e3a7e83fb4a2f48

1 file changed

+75
-0
lines changed
Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
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
38+
intuitive dApps that bridge the gap between blockchain technology and real-world applications. Always
39+
learning, always 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
50+
key={skill}
51+
className="px-4 py-3 bg-base-200 rounded-lg text-center font-medium"
52+
>
53+
{skill}
54+
</div>
55+
),
56+
)}
57+
</div>
58+
</section>
59+
60+
{/* Footer */}
61+
<footer className="pt-8 border-t border-base-300">
62+
<p className="text-center text-base-content/50 text-sm">
63+
Building with{" "}
64+
<Link href="https://buidlguidl.com" className="text-primary hover:underline" target="_blank">
65+
BuidlGuidl
66+
</Link>{" "}
67+
• Batch 22
68+
</p>
69+
</footer>
70+
</div>
71+
</div>
72+
);
73+
};
74+
75+
export default AndrewPage;

0 commit comments

Comments
 (0)