Added more routes, and CV!
This commit is contained in:
parent
767ff685b1
commit
bb4d8f2004
12 changed files with 83 additions and 0 deletions
9
components/ui/Referencelink.tsx
Normal file
9
components/ui/Referencelink.tsx
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
export default function Referencelink({name, link}: {name: string; link: string}) {
|
||||
return (
|
||||
<div className="bg-slate-400 dark:bg-slate-800 hover:bg-slate-600 font-medium py-2 px-4 rounded-lg shadow-md transition duration-200 ease-in-out">
|
||||
<a href={`${link}`} className="block">
|
||||
<h1 className="font-semibold text-slate-800dark:text-slate-400 text-lg">{name}</h1>
|
||||
</a>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue