mirror of
https://github.com/tlsnotary/website.git
synced 2026-01-08 21:48:05 -05:00
90 lines
1.6 KiB
TypeScript
90 lines
1.6 KiB
TypeScript
import { Icons } from "../components/Icons";
|
|
import { ReactNode } from "react";
|
|
|
|
type NavItem = {
|
|
label: string;
|
|
href: string;
|
|
icon?: ReactNode;
|
|
external?: boolean;
|
|
};
|
|
|
|
// list of links used in the app
|
|
export const LINKS = {
|
|
DISCORD: "https://discord.gg/9XwESXtcN7",
|
|
GITHUB: "https://github.com/tlsnotary/tlsn",
|
|
TWITTER: "https://twitter.com/tlsnotary",
|
|
DOCUMENTATION: "https://docs.tlsnotary.org/",
|
|
DEMO: "https://demo.tlsnotary.org/",
|
|
BLOG: "#",
|
|
};
|
|
|
|
// app header navigation
|
|
export const NAVIGATION: NavItem[] = [
|
|
{
|
|
label: "About",
|
|
href: "/about",
|
|
},
|
|
{
|
|
label: "Use Cases",
|
|
href: "/use-cases",
|
|
},
|
|
{
|
|
label: "FAQ",
|
|
href: "/faq",
|
|
},
|
|
{
|
|
label: "Documentation",
|
|
href: LINKS.DOCUMENTATION,
|
|
external: true,
|
|
},
|
|
{
|
|
label: "API",
|
|
href: "https://tlsnotary.github.io/tlsn/",
|
|
external: true,
|
|
},
|
|
];
|
|
|
|
// app footer navigation
|
|
export const SOCIALS_FOOTER: NavItem[] = [
|
|
{
|
|
label: "Discord",
|
|
href: LINKS.DISCORD,
|
|
external: true,
|
|
icon: <Icons.Discord />,
|
|
},
|
|
{
|
|
label: "GitHub",
|
|
href: LINKS.GITHUB,
|
|
external: true,
|
|
icon: <Icons.Github />,
|
|
},
|
|
{
|
|
label: "Twitter",
|
|
href: LINKS.TWITTER,
|
|
external: true,
|
|
icon: <Icons.Twitter />,
|
|
},
|
|
];
|
|
|
|
// app header socials
|
|
export const SOCIALS_HEADER: NavItem[] = [
|
|
{
|
|
label: "Discord",
|
|
href: LINKS.DISCORD,
|
|
external: true,
|
|
icon: <Icons.DiscordCircle />,
|
|
},
|
|
{
|
|
label: "GitHub",
|
|
href: LINKS.GITHUB,
|
|
external: true,
|
|
icon: <Icons.GithubCircle />,
|
|
},
|
|
{
|
|
label: "Twitter",
|
|
href: LINKS.TWITTER,
|
|
external: true,
|
|
icon: <Icons.TwitterCircle />,
|
|
},
|
|
];
|