mirror of
https://github.com/pheralb/svgl.git
synced 2025-02-06 06:58:04 +08:00
17 lines
264 B
JavaScript
17 lines
264 B
JavaScript
const HEADER_LINKS = [
|
|
{
|
|
id: 1,
|
|
href: "/",
|
|
external: false,
|
|
title: "Browse",
|
|
},
|
|
{
|
|
id: 2,
|
|
href: "https://github.com/pheralb/svgl/tree/main/public/library",
|
|
external: true,
|
|
title: "Library",
|
|
}
|
|
];
|
|
|
|
export default HEADER_LINKS;
|