50 lines
1.0 KiB
TypeScript
50 lines
1.0 KiB
TypeScript
import { Link } from "./link.model";
|
|
import { Pages } from "./pages.model";
|
|
|
|
export const Links: Array<Link> =
|
|
[
|
|
{
|
|
name: "cloud",
|
|
location: "https://cloud.inkletblot.com"
|
|
},
|
|
{
|
|
name: "pet",
|
|
location: Pages.PET
|
|
},
|
|
{
|
|
name: "gitlab",
|
|
location: "https://gitlab.inkletblot.com/"
|
|
},
|
|
{
|
|
name: "forum",
|
|
location: "https://www.inkletblot.com/forum/"
|
|
},
|
|
{
|
|
name: "books",
|
|
location: "https://www.inkletblot.com/books/"
|
|
},
|
|
{
|
|
name: "known",
|
|
location: "https://www.inkletblot.com/known/"
|
|
},
|
|
{
|
|
name: "tng",
|
|
location: "https://www.inkletblot.com/tng/"
|
|
},
|
|
{
|
|
name: "pico",
|
|
location: "https://www.inkletblot.com/pico/"
|
|
},
|
|
{
|
|
name: "pasty",
|
|
location: "https://www.inkletblot.com/pasty/"
|
|
},
|
|
{
|
|
name: "mail",
|
|
location: "https://www.inkletblot.com/webmail/"
|
|
},
|
|
{
|
|
name: "chk",
|
|
location: "https://www.chkseven.com"
|
|
}
|
|
] |