File tree Expand file tree Collapse file tree 1 file changed +15
-3
lines changed
Expand file tree Collapse file tree 1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ import { LabCard } from "@/components/LabCard";
22import { ProjectCard } from "@/components/ProjectCard" ;
33import projectData from "@/data/projects/data.json" ;
44import labData from "@/data/labs/data.json" ;
5+ import { IconBrandX , IconBrandGithub , IconMail } from "@tabler/icons-react" ;
56
67const 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 )
You can’t perform that action at this time.
0 commit comments