✨ More style changes, removed test projects, favicon
Some checks failed
Build and deploy website / build (push) Failing after 22s
Some checks failed
Build and deploy website / build (push) Failing after 22s
- Fix missing aria-labels - Fix breadcrumbs on specific projects - Removed uses from NavBar - Center image on project page - Colour link on project page - Initial README Signed-off-by: Martin Berg Alstad <git@martials.no>
This commit is contained in:
10
src/links.ts
10
src/links.ts
@ -4,34 +4,24 @@ import type { NavLink } from "@/utils/linking.ts"
|
||||
interface Link {
|
||||
label: () => string
|
||||
to: NavLink
|
||||
color: string
|
||||
}
|
||||
|
||||
const Links: Link[] = [
|
||||
{
|
||||
label: m.home,
|
||||
to: "/",
|
||||
color: "text-cat-rosewater",
|
||||
},
|
||||
{
|
||||
label: m.myProjects,
|
||||
to: "/projects",
|
||||
color: "text-cat-flamingo",
|
||||
},
|
||||
{
|
||||
label: m.myLinks,
|
||||
to: "/links",
|
||||
color: "text-cat-pink",
|
||||
},
|
||||
{
|
||||
label: m.uses,
|
||||
to: "/uses",
|
||||
color: "text-cat-mauve",
|
||||
},
|
||||
{
|
||||
label: m.contactMe,
|
||||
to: "/contact",
|
||||
color: "text-cat-red",
|
||||
},
|
||||
]
|
||||
|
||||
|
Reference in New Issue
Block a user