diff --git a/src/constants/links.ts b/src/constants/links.ts index 11ca27e..aa3c596 100644 --- a/src/constants/links.ts +++ b/src/constants/links.ts @@ -6,7 +6,7 @@ export type Link = { }; -const links: Link[] = [ +const links: readonly Link[] = [ { url: "https://ayos.blog", icon: "blog", @@ -25,6 +25,6 @@ const links: Link[] = [ icon: "npm", set: "gg" } -]; +] as const; export default links; \ No newline at end of file