Style upgrade, added minor nav bar, set up some basic routes and began work on components and components system.
This commit is contained in:
parent
a0be72856c
commit
5eaf5f319f
14 changed files with 204 additions and 117 deletions
9
components/ui/Hyperlink.tsx
Normal file
9
components/ui/Hyperlink.tsx
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
export default function Hyperlink({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={`https://${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