Triston Armstrong
fd51f273f4
- removes tailwind (was cool but dont need it) - reworks a lot of the html - utilize a no css... library? css file? idk - add a few details - rework the navigation on the built notes pages - write a bunch of tailwind like css classes - ... maybe some more, too lazy
14 lines
282 B
JavaScript
14 lines
282 B
JavaScript
import ExternalLinkIcon from "../ExternalLinkIcon.js";
|
|
|
|
export function UsefulLink({ title, link }) {
|
|
return (
|
|
<a href={link} className="">
|
|
<li className="">
|
|
<div>{title}</div>
|
|
<div className="" />
|
|
<ExternalLinkIcon />
|
|
</li>
|
|
</a>
|
|
)
|
|
}
|