Skip to content

Commit e03ca95

Browse files
committed
feat:contact
1 parent d582008 commit e03ca95

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

src/layouts/default.tsx

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { LabCard } from "@/components/LabCard";
22
import { ProjectCard } from "@/components/ProjectCard";
33
import projectData from "@/data/projects/data.json";
44
import labData from "@/data/labs/data.json";
5+
import { IconBrandX, IconBrandGithub, IconMail } from "@tabler/icons-react";
56

67
const Layout: React.FC = () => {
78
return (
@@ -31,9 +32,20 @@ const MineInfos = () => {
3132
<a target="_blank" href="https://github.com/oopserian" className="border border-zinc-50 block w-12 h-12 rounded-full overflow-hidden bg-gradient-to-t from-zinc-50 to-green-50">
3233
<img className="w-full h-full object-cover" src="/logo.webp" />
3334
</a>
34-
<div>
35-
<h2 className="text-2xl font-bold">Web & software developer</h2>
36-
<p className="text-md font-thin text-zinc-400">Building is My Passion!</p>
35+
<div className="flex flex-col gap-2">
36+
<h2 className="text-2xl font-bold leading-none">Web & software developer</h2>
37+
<p className="text-md font-thin text-zinc-400 leading-none">Building is My Passion!</p>
38+
<div className="flex items-center gap-2">
39+
<a href="https://x.com/oopserian" target="_blank">
40+
<IconBrandX size={20} />
41+
</a>
42+
<a href="https://github.com/oopserian" target="_blank">
43+
<IconBrandGithub size={20} />
44+
</a>
45+
<a href="mailto:oopserian@gmail.com" target="_blank">
46+
<IconMail size={20} />
47+
</a>
48+
</div>
3749
</div>
3850
</div>
3951
)

0 commit comments

Comments
 (0)