mirror of
https://github.com/Xevion/xevion.dev.git
synced 2025-12-08 18:09:25 -06:00
Increase opacity, use Paths GitHub for link
This commit is contained in:
@@ -31,7 +31,7 @@ const ProjectsPage: NextPage = () => {
|
|||||||
{
|
{
|
||||||
name: "Paths",
|
name: "Paths",
|
||||||
description: "Graph Traversal Algorithms",
|
description: "Graph Traversal Algorithms",
|
||||||
url: "/paths",
|
url: "https://github.com/Xevion/Paths",
|
||||||
icon: GiPathDistance
|
icon: GiPathDistance
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -51,7 +51,7 @@ const ProjectsPage: NextPage = () => {
|
|||||||
<div className="mt-20 grid grid-cols-3 gap-20 h-full py-2 max-w-500 w-max mx-auto flex ">
|
<div className="mt-20 grid grid-cols-3 gap-20 h-full py-2 max-w-500 w-max mx-auto flex ">
|
||||||
{projects.map(({name, description, url, icon: Icon}) => <Link
|
{projects.map(({name, description, url, icon: Icon}) => <Link
|
||||||
key={name}
|
key={name}
|
||||||
className="relative flex flex-shrink items-center opacity-50 hover:opacity-100 transition-opacity"
|
className="relative flex flex-shrink items-center opacity-75 hover:opacity-100 transition-opacity"
|
||||||
href={url ?? ""}
|
href={url ?? ""}
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noreferrer"
|
rel="noreferrer"
|
||||||
@@ -61,7 +61,7 @@ const ProjectsPage: NextPage = () => {
|
|||||||
</div>
|
</div>
|
||||||
<div className="flex-auto">
|
<div className="flex-auto">
|
||||||
<div className="text-normal">{name}</div>
|
<div className="text-normal">{name}</div>
|
||||||
<div className="text-sm opacity-60 font-normal">{description}</div>
|
<div className="text-sm opacity-70 font-normal">{description}</div>
|
||||||
</div>
|
</div>
|
||||||
</Link>)}
|
</Link>)}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user