Skip to content

Commit

Permalink
Merge pull request #301 from tagion/a_branch
Browse files Browse the repository at this point in the history
manifesto pdf added
  • Loading branch information
Kristian-Tagion authored Jan 10, 2025
2 parents f2084ba + ed124be commit cc931d4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
Binary file added public/resources/tagion-manifesto.pdf
Binary file not shown.
1 change: 1 addition & 0 deletions src/common/enums/external_links.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ export enum ExternalLinks {
TAGION_BRAND_GUIDELINES = "/resources/tagion-brand-guidelines.pdf",
TAGION_TOKENOMICS = "/resources/tagion-tokenomics.pdf",
TAGION_WHITEPAPER = "/resources/tagion-whitepaper.pdf",
TAGION_MANIFESTO = "/resources/tagion-manifesto.pdf",

BUY_TAGIONS = "/buy-tagions",

Expand Down
3 changes: 2 additions & 1 deletion src/content/footer-links.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ExternalLinks, InternalLinks } from "../common/enums";
import { tokenomicsPdfLink, whitepaperPdfLink } from "./navigation-links";
import { manifestoPdfLink, tokenomicsPdfLink, whitepaperPdfLink } from "./navigation-links";

export type LinkType = {
name: string;
Expand Down Expand Up @@ -43,6 +43,7 @@ export const footerColumnLinks = [
externalLink: true,
},
tokenomicsPdfLink,
manifestoPdfLink,
],
},
];
6 changes: 6 additions & 0 deletions src/content/navigation-links.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,12 @@ export const whitepaperPdfLink = {
externalLink: true,
};

export const manifestoPdfLink = {
name: "Tagion Manifesto",
linkTo: ExternalLinks.TAGION_MANIFESTO,
externalLink: false,
}

export const navigationLinks: Array<{
name: string;
linkTo?: string;
Expand Down

0 comments on commit cc931d4

Please sign in to comment.