Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
// This approach will create a personal card using React and Lucide React icons.
// We'll use ESM imports for React and Lucide icons.
// The card will be responsive and styled using Tailwind CSS classes.
/** @jsxImportSource https://esm.sh/react */
import { Book, Briefcase, FileText, MessageCircle, Palette, Trophy } from "https://esm.sh/lucide-react";
import React from "https://esm.sh/react";
import { createRoot } from "https://esm.sh/react-dom/client";
function PersonalCard() {
return (
<div className="flex justify-center items-center min-h-screen bg-gray-100 p-4">
<div className="bg-white shadow-2xl rounded-xl max-w-md w-full overflow-hidden">
<div className="bg-gradient-to-r from-blue-500 to-purple-600 p-4 text-white">
<div className="w-24 h-24 mx-auto bg-white rounded-full border-4 border-white shadow-lg mb-4 overflow-hidden">
<img
src="http://nocturne.bczcdn.com/file/1726915604059_45722/1.jpg"
alt="雷少"
className="w-full h-full object-cover"
/>
</div>
<h1 className="text-2xl font-bold text-center">雷少0xByteRay</h1>
<p className="text-center text-sm">成都高新</p>
<div className="flex justify-center mt-2 space-x-2">
<span className="bg-white bg-opacity-20 px-2 py-1 rounded-full text-xs">资深后端程序员</span>
<span className="bg-white bg-opacity-20 px-2 py-1 rounded-full text-xs">ISTP</span>
<span className="bg-white bg-opacity-20 px-2 py-1 rounded-full text-xs">DDD专家</span>
</div>
</div>
<div className="p-4">
<div className="mb-4">
<div className="flex items-center mb-2">
<FileText className="w-5 h-5 text-blue-500 mr-2" />
<h2 className="text-lg font-semibold">近期关键投入</h2>
</div>
<p className="text-sm text-gray-600">探索AI落地场景,借助AI高效开发各类出海AI应用</p>
</div>
<div className="mb-4">
<div className="flex items-center mb-2">
<Trophy className="w-5 h-5 text-blue-500 mr-2" />
<h2 className="text-lg font-semibold">履历亮点</h2>
</div>
<ul className="text-sm text-gray-600 list-disc list-inside">
<li>前BAT资深后端程序员</li>
<li>8年java编程经验,专注于业务层开发</li>
<li>AI导航网站alistforai.com开发者</li>
</ul>
</div>
<div className="mb-4">
<div className="flex items-center mb-2">
<Briefcase className="w-5 h-5 text-blue-500 mr-2" />
<h2 className="text-lg font-semibold">擅长领域</h2>
</div>
<div className="grid grid-cols-2 gap-2">
<div className="bg-blue-100 p-2 rounded">
<h3 className="font-semibold text-sm">网站开发</h3>
<p className="text-xs text-gray-600">全栈开发能力,快速上站</p>
</div>
<div className="bg-green-100 p-2 rounded">
<h3 className="font-semibold text-sm">领域驱动设计</h3>
<p className="text-xs text-gray-600">多年DDD经验,指导企业级应用</p>
</div>
<div className="bg-purple-100 p-2 rounded">
<h3 className="font-semibold text-sm">AI应用落地</h3>
<p className="text-xs text-gray-600">精通AI工作流,实现变现</p>
</div>
<div className="bg-orange-100 p-2 rounded">
<h3 className="font-semibold text-sm">AI提示词工程</h3>
<p className="text-xs text-gray-600">深入研究,提升AI输出质量</p>
</div>
</div>
</div>
<div className="mb-4">
<div className="flex items-center mb-2">
<Palette className="w-5 h-5 text-blue-500 mr-2" />
<h2 className="text-lg font-semibold">兴趣爱好</h2>
</div>
<p className="text-sm text-gray-600">
🎮 魂游 | 🎬 电影 | 🚴 骑行 | 🏊 游泳
</p>
</div>
</div>
<div className="bg-gray-50 p-4 flex justify-between items-center">
<p className="text-sm text-gray-600 italic">"用代码绘制未来,以AI点亮创新"</p>
<div className="w-16 h-16 bg-gray-200 rounded-full overflow-hidden">
<img
src="http://nocturne.bczcdn.com/file/1726915361444_74026/2.jpg"
alt="Logo"
className="w-full h-full object-cover"
/>
</div>
</div>
</div>
</div>
);
byteray-zhangxiaoke.web.val.run
September 21, 2024