make links readonly

This commit is contained in:
Ayo 2023-09-29 12:33:53 +02:00
parent 2f4b774822
commit 242b91ea4b

View file

@ -6,7 +6,7 @@ export type Link = {
}; };
const links: Link[] = [ const links: readonly Link[] = [
{ {
url: "https://ayos.blog", url: "https://ayos.blog",
icon: "blog", icon: "blog",
@ -25,6 +25,6 @@ const links: Link[] = [
icon: "npm", icon: "npm",
set: "gg" set: "gg"
} }
]; ] as const;
export default links; export default links;