This repository has been archived on 2025-12-28. You can view files and clone it, but cannot push or open issues or pull requests.
inkletblot-com-v2/src/app/shared/models/links.model.ts

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"
}
]