├── .editorconfig
├── .gitignore
├── DESIGN_CONTRIBUTIONS.md
├── README.md
├── content.sh
├── gridsome.config.js
├── gridsome.server.js
├── package-lock.json
├── package.json
├── site-map.drawio
├── src
├── assets
│ ├── SecretNetwork_BrandBook_Version01.pdf
│ ├── announcement.png
│ ├── arrow-down-black.svg
│ ├── arrow-down-white.svg
│ ├── arrow-left-blue.svg
│ ├── arrow-left-turquoise.svg
│ ├── arrow-right-black.svg
│ ├── arrow-right-blue.svg
│ ├── arrow-right-circle-blue.svg
│ ├── arrow-right-circle-turquoise.svg
│ ├── arrow-right-circle.svg
│ ├── arrow-right-turquoise.svg
│ ├── arrow-right-white.svg
│ ├── back_button_dark.png
│ ├── back_button_light.png
│ ├── badge-black.svg
│ ├── badge-white.svg
│ ├── book.svg
│ ├── brandbook
│ │ ├── analog.png
│ │ ├── high-key.png
│ │ ├── primary-logo-black.png
│ │ ├── primary-logo-white.png
│ │ ├── secondary-logo-black.png
│ │ ├── secondary-logo-white.png
│ │ ├── topographical-black.png
│ │ └── topographical-white.png
│ ├── cards_dark.png
│ ├── cards_dark_A.png
│ ├── cards_dark_B.png
│ ├── cards_dark_C.png
│ ├── cards_light.png
│ ├── cards_light_A.png
│ ├── cards_light_B.png
│ ├── cards_light_C.png
│ ├── chevron-down-dark.svg
│ ├── chevron-down-light.svg
│ ├── chevron-right-dark.svg
│ ├── chevron-right-light.svg
│ ├── chevron-up-dark.svg
│ ├── chevron-up-light.svg
│ ├── chromo.svg
│ ├── close-icon-black.svg
│ ├── close-icon-white.svg
│ ├── community-icons
│ │ ├── discord-black.svg
│ │ ├── discord-white.svg
│ │ ├── forum-black.svg
│ │ ├── forum-white.svg
│ │ ├── github-black.svg
│ │ ├── github-white.svg
│ │ ├── telegram-black.svg
│ │ ├── telegram-white.svg
│ │ ├── twitter-black.svg
│ │ ├── twitter-white.svg
│ │ ├── youtube-black.svg
│ │ └── youtube-white.svg
│ ├── community_card_dark.png
│ ├── community_card_light.png
│ ├── discord-black.svg
│ ├── discord-white.svg
│ ├── eth-bridge.jpg
│ ├── github-black.png
│ ├── github-black.svg
│ ├── github-white.png
│ ├── github-white.svg
│ ├── grid_item_dark.png
│ ├── grid_item_light.png
│ ├── hero-black.svg
│ ├── hero-color.svg
│ ├── hero-green.svg
│ ├── hero-white.svg
│ ├── horizontal_card_dark.png
│ ├── horizontal_card_light.png
│ ├── large_announcement_dark.png
│ ├── large_announcement_light.png
│ ├── library.svg
│ ├── logo-seal-outline-black.svg
│ ├── logo-seal-outline-white.svg
│ ├── logo-seal.svg
│ ├── manual-guide.svg
│ ├── media_card_dark.png
│ ├── media_card_light.png
│ ├── menu-black.svg
│ ├── menu-white.svg
│ ├── mono.svg
│ ├── moon.svg
│ ├── newsletter-black.svg
│ ├── next_button_dark.png
│ ├── next_button_light.png
│ ├── pin-black.svg
│ ├── pin-white.svg
│ ├── podcasts
│ │ ├── listen-on-apple-podcasts.png
│ │ ├── listen-on-google-podcasts.png
│ │ ├── listen-on-soundcloud.png
│ │ └── listen-on-spotify.png
│ ├── run.svg
│ ├── scrt-logo.png
│ ├── secret-logo--black.svg
│ ├── secret-logo--white.svg
│ ├── secret-logo-footer--black.svg
│ ├── secret-logo-footer--white.svg
│ ├── secretnetwork-logo-primary-black.svg
│ ├── secretnetwork-logo-primary-white.svg
│ ├── separator-black.svg
│ ├── separator-white.svg
│ ├── small_announcement_dark.png
│ ├── small_announcement_light.png
│ ├── source-code.svg
│ ├── sun.svg
│ ├── telegram-black.svg
│ ├── telegram-white.svg
│ ├── twitter-black.svg
│ ├── twitter-white.svg
│ ├── vertical_card_dark.png
│ ├── vertical_card_light.png
│ ├── youtube-black.svg
│ └── youtube-white.svg
├── components
│ ├── AlertBar.vue
│ ├── Announcement.vue
│ ├── BackButton.vue
│ ├── Card.vue
│ ├── CardHolder.vue
│ ├── ColorPalette.vue
│ ├── CommitteeCard.vue
│ ├── CommunityCard.vue
│ ├── DeveloperCard.vue
│ ├── Faq.vue
│ ├── GridItem.vue
│ ├── MainPageHero.vue
│ ├── MediaCard.vue
│ ├── Newsletter.vue
│ ├── NextButton.vue
│ ├── Separator.vue
│ ├── SimpleSection.vue
│ ├── SmallAnnouncement.vue
│ ├── Submenu.vue
│ ├── ThemedImage.vue
│ ├── VideoCard.vue
│ ├── blog
│ │ ├── BlogAuthor.vue
│ │ ├── BlogCard.vue
│ │ ├── BlogCardFeatured.vue
│ │ ├── BlogHero.vue
│ │ ├── FeaturedPosts.vue
│ │ ├── LatestPosts.vue
│ │ ├── LatestPostsTwelve.vue
│ │ ├── Posts.vue
│ │ └── PostsFeatured.vue
│ └── home
│ │ ├── HomeCard.vue
│ │ └── HomePageHero.vue
├── config
│ └── open-graph.js
├── favicon.png
├── index.html
├── layouts
│ ├── BaseLayout.vue
│ ├── BlogEntryLayout.vue
│ ├── DocumentationLayout.vue
│ ├── HomePageLayout.vue
│ ├── MainPageLayout.vue
│ ├── README.md
│ ├── ThankYouLayout.vue
│ ├── docs-nav.json
│ └── subs
│ │ └── MediaLayout.vue
├── main.js
├── pages
│ └── Blog.vue
├── sass
│ ├── _tokens.scss
│ └── index.scss
└── templates
│ ├── Content.vue
│ ├── GhostPost.vue
│ └── README.md
└── static
├── README.md
├── SecretNetwork_BrandBook_Version01.pdf
├── analog.png
├── analog.svg
├── cover.png
├── high-key.png
├── high-key.svg
├── secretnetwork-logo-primary-black.png
├── secretnetwork-logo-primary-black.svg
├── secretnetwork-logo-primary-white.png
├── secretnetwork-logo-primary-white.svg
├── secretnetwork-logo-secondary-black.png
├── secretnetwork-logo-secondary-black.svg
├── secretnetwork-logo-secondary-white.png
├── secretnetwork-logo-secondary-white.svg
├── topographical-black.png
├── topographical-black.svg
├── topographical-white.png
└── topographical-white.svg
/.editorconfig:
--------------------------------------------------------------------------------
1 | root = true
2 |
3 | [*]
4 | end_of_line = lf
5 | insert_final_newline = true
6 | charset = utf-8
7 | indent_style = space
8 |
9 | [*.{js,json,vue,scss,css,md,html}]
10 | indent_size = 2
11 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules
3 |
4 | *.log
5 | .cache
6 | .DS_Store
7 | src/.temp
8 | node_modules
9 | dist
10 | .env
11 | .env.*
12 |
13 | content
14 | content/*
15 |
16 | yarn.lock
--------------------------------------------------------------------------------
/DESIGN_CONTRIBUTIONS.md:
--------------------------------------------------------------------------------
1 | # Design
2 |
3 | File Format:
4 | Figma
5 |
6 | Version Management
7 | Figma Cloud
8 | (Figma)[link]
9 |
10 | Setup
11 | The Foundation maintains a figma account used as a central repository of the design files of the website.
12 | In this account, the library contains one current working file and a series of historical files representing the design state of the site at the end of each week.
13 |
14 | Weekly Historical files are read only and immutable. The are kept as seperate files (as opposed to pages or layers) as a way of maintaining a true snapshot including assets that may change over time, but without clogging the asset library up with numerous versions of each asset.
15 |
16 | Working File
17 | The working file contains layers for each week with comments. All weeks are "locked" except for the previous week and the current working doc. These are kept for quick reference, but not as official snapshots.
18 |
19 | Prior Week
20 | The prior week is open for comment during the subsequent week. The community is encouraged to comment on the file as a way of pointing out issues for the design team to fix in the working document.
21 | In addition the prior week file is the file that contains all changes being implemented into the live site that week.
22 | Finally, it is the document contributors will clone in order to make changes for submission.
23 |
24 | Working Document
25 | This is the active working document that is being updated by the design team. This includes bug fixes noted in comments, as well as merges from the prior weeks submissions.
26 |
27 | Contributions
28 | Contributors should start by cloning the current prior week document.
29 | Once cloned files can be changed in anyway a designer wants.
30 | Successful submissions will however most likely be ones that follow a few simple guidelines
31 | - One change per submission
32 | The site is build in a component structure. Components are isolated vue.js files that accept markdown.md content files. As such, to multiple components are way more labor intensive from a coding perspective. In addition the changes in submissions will be based on older weeks design documents makes merging difficult. Limiting the changes to one component at a time makes sorting this all out easier.
33 | It is thus recommended that the designer isolate the component, modify it in isolation, and submit that component in a seperate file.
34 | - Make submissions if modifying a design aspect of the site
35 | If you notice a mistake in content of functionality you can open a issue in github or comment on the prior weeks file. Actaully making the change and submitting it will only waist time.
36 | - Follow the Brand Guidlines, unless the change is to the guidlines themselves.
37 | If you are making a change to a component design, make sure you aren't actually changing a component in the design system like a button, font, or color. If you are changing the such a component it either needs to be modified in the design system, or it is a new artifact intended to be added to the design system. Either is okay, but the hurdle to such changes getting merged is way higher.
38 | - Provide written context in a "context layer".
39 | A layer that can be turned on and off is really helpful for the design team to evaluate in context.
40 | - More?
41 |
42 | Submissions
43 | To submit a modification, share your file with the Secret Network Figma account and title it "Submission - Title". The Title should make reference to what is being changed.
44 | Once submitted, be ready to join the next most recent design committee meeting to discuss the change. If you do not, the change will most likely not be taken up until the following week or when you join. Alternatively, you could create an issue request in Github explaining the change and why joining is not possible.
45 | Successful submissions will be merged, unsuccessful may be resubmitted after posting about the unsuccessful change on the forums asking for support. If enough support is achieved they will be reconsidered.
46 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # SCRT Website
2 |
3 | ## For Content Management go to:
4 | https://github.com/SecretFoundation/SecretWebsiteContent
5 |
6 | ## Pre-requisites
7 |
8 | Install nodejs using [nvm](https://github.com/nvm-sh/nvm#install--update-script) package manager
9 |
10 | ```bash
11 | curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.36.0/install.sh | bash
12 | ```
13 |
14 | # Local dev environment
15 | Install the SecretWesbite content
16 | ```bash
17 | git clone https://github.com/SecretFoundation/SecretWebsiteContent.git ./content
18 | ```
19 |
20 | Install the dependencies
21 |
22 | ```bash
23 | npm install
24 | ```
25 |
26 | Run the project locally
27 |
28 | ```bash
29 | npm run develop
30 | ```
31 |
32 | Usually the website is brought up at [http://localhost:8080](http://localhost:8080)
33 |
34 | ### Hosted Dev Link
35 | https://secret-website-development.onrender.com
36 |
--------------------------------------------------------------------------------
/content.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | # directory that contains the markdowns, downloaded from a git repo
4 | source ./.env
5 |
6 | CONTENT_DIR=${DIR:-content}
7 | REPO="https://github.com/SecretFoundation/SecretWebsiteContent.git"
8 |
9 | echo "Content directory: $CONTENT_DIR"
10 | echo "Getting markdowns from repo $REPO branch $BRANCH"
11 | echo
12 |
13 | if [[ -e "$CONTENT_DIR" ]]; then
14 | cd $CONTENT_DIR
15 | git pull origin $BRANCH
16 | cd .. # weird
17 | else
18 | git clone $REPO $CONTENT_DIR
19 | cd $CONTENT_DIR
20 | git checkout $BRANCH
21 | cd ..
22 | fi
--------------------------------------------------------------------------------
/gridsome.config.js:
--------------------------------------------------------------------------------
1 | // This is where project configuration and plugin options are located.
2 | // Learn more: https://gridsome.org/docs/config
3 |
4 | // Changes here require a server restart.
5 | // To restart press CTRL + C in terminal and run `gridsome develop`
6 |
7 | const path = require('path');
8 |
9 | function addStyleResource(rule) {
10 | rule.use('style-resource').loader('style-resources-loader').options({
11 | patterns: [
12 | path.resolve(__dirname, './src/sass/_tokens.scss'),
13 | path.resolve(__dirname,
14 | './node_modules/@lkmx/flare-legacy/src/components/**/*.scss'),
15 | path.resolve(__dirname,
16 | './node_modules/@lkmx/flare-legacy/src/functions/**/*.scss'),
17 | path.resolve(__dirname,
18 | './node_modules/@lkmx/flare-legacy/src/guides/**/*.scss'),
19 | path.resolve(__dirname,
20 | './node_modules/@lkmx/flare-legacy/src/structures/**/*.scss'),
21 | ],
22 | });
23 | }
24 |
25 | module.exports = {
26 | siteName: 'Secret Network',
27 | siteUrl: 'https://scrt.network',
28 | plugins: [
29 | {
30 | use: '@gridsome/vue-remark',
31 | options: {
32 | typeName: 'Content',
33 | baseDir: './content',
34 | path: '/',
35 | template: './src/templates/Content.vue',
36 | remark: {
37 | // remark options
38 | },
39 | },
40 | },
41 | {
42 | use: '@gridsome/source-ghost',
43 | options: {
44 | typeName: 'Ghost',
45 | baseUrl: 'https://blog-admin.scrt.network',
46 | contentKey: '74d989aa8008b1d8e3c9464b65',
47 | }
48 | },
49 | {
50 | use: '@gridsome/plugin-google-analytics',
51 | options: {
52 | id: 'UA-173950488-3'
53 | }
54 | }
55 | ],
56 | templates: {
57 | GhostPost: '/blog/:slug'
58 | },
59 | transformers: {
60 | remark: {
61 | externalLinksTarget: '_blank',
62 | externalLinksRel: ['nofollow', 'noopener', 'noreferrer'],
63 | anchorClassName: 'icon icon-link',
64 | plugins: [
65 | 'gridsome-plugin-remark-prismjs-all',
66 | ]
67 | },
68 | },
69 | chainWebpack(config) {
70 | const types = ['vue-modules', 'vue', 'normal-modules', 'normal'];
71 |
72 | types.forEach(type => {
73 | addStyleResource(config.module.rule('scss').oneOf(type));
74 | });
75 | config.resolve.alias.set('@images', '@/../content/img')
76 | },
77 | };
78 |
--------------------------------------------------------------------------------
/gridsome.server.js:
--------------------------------------------------------------------------------
1 | // Server API makes it possible to hook into various parts of Gridsome
2 | // on server-side and add custom data to the GraphQL data layer.
3 | // Learn more: https://gridsome.org/docs/server-api/
4 |
5 | // Changes here require a server restart.
6 | // To restart press CTRL + C in terminal and run `gridsome develop`
7 | const moment = require('moment');
8 | const { google } = require('googleapis')
9 |
10 | //google.auth.keyFilename = './static/cal-key.json';
11 | //google.auth.scopes = ['https://www.googleapis.com/auth/calendar'];
12 |
13 | const client = google.auth;
14 |
15 | module.exports = function (api) {
16 | api.loadSource(async actions => {
17 |
18 | // async function getEvents(client) {
19 | // function uuidv4() {
20 | // return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
21 | // var r = Math.random() * 16 | 0, v = c == 'x' ? r : (r & 0x3 | 0x8);
22 | // return v.toString(16);
23 | // });
24 | // }
25 |
26 | // const UUID = uuidv4();
27 |
28 |
29 | // const calendar = google.calendar({ version: 'v3', auth: client});
30 |
31 | // /*calendar.events.watch(
32 | // {
33 | // auth: client,
34 | // resource: {
35 | // id: UUID,
36 | // type: "web_hook",
37 | // address: "https://secret-website-development.onrender.com/rebuild"
38 | // },
39 | // calendarId: ''
40 | // },(error, response) => {
41 | // if (error) {
42 | // console.log(error);
43 | // return;
44 | // }
45 | // //console.log(response);
46 | // }
47 | // );*/
48 |
49 | // let eventCollection;
50 |
51 | // return new Promise((resolve, reject) => {
52 |
53 | // calendar.events.list(
54 | // {
55 | // calendarId: '',
56 | // timeMin: moment().subtract(1,'weeks').format(),
57 | // timeMax: moment().add(51,'weeks').format(), // EVENTS FOR 1 Year WEEKS
58 | // singleEvents: true,
59 | // orderBy: 'startTime',
60 | // },
61 | // (err, res) => {
62 | // if (err) {
63 | // console.log(`The API returned an error: ${err}`)
64 | // }
65 |
66 | // const eventCollection = actions.addCollection('Events');
67 |
68 | // res.data.items.forEach(item => {
69 | // eventCollection.addNode({
70 | // id: item.id,
71 | // title: item.summary,
72 | // startDate: item.start.dateTime,
73 | // endDate: item.end.dateTime
74 | // });
75 | // });
76 | // resolve(eventCollection);
77 | // });
78 | // },
79 | // );
80 | // }
81 | // eventCollection = await getEvents(client)
82 |
83 | });
84 |
85 | api.createPages(({ createPage }) => {
86 | // Use the Pages API here: https://gridsome.org/docs/pages-api/
87 | })
88 | }
89 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "scrt-www",
3 | "version": "0.1.0",
4 | "private": true,
5 | "scripts": {
6 | "prebuild": "chmod +x ./content.sh && ./content.sh",
7 | "build": "gridsome build",
8 | "develop": "gridsome develop",
9 | "explore": "gridsome explore"
10 | },
11 | "dependencies": {
12 | "@gridsome/plugin-google-analytics": "^0.1.2",
13 | "@gridsome/source-filesystem": "^0.6.2",
14 | "@gridsome/source-ghost": "^0.4.0",
15 | "@gridsome/vue-remark": "^0.2.5",
16 | "@lkmx/flare-legacy": "0.28.19",
17 | "axios": "^0.21.1",
18 | "googleapis": "^68.0.0",
19 | "gridsome": "^0.7.0",
20 | "gridsome-plugin-remark-prismjs-all": "^0.3.5",
21 | "moment": "^2.29.1",
22 | "typeface-hind": "^1.1.13",
23 | "typeface-montserrat": "^1.1.13",
24 | "vue-simple-calendar": "^5.0.0",
25 | "vue-social-sharing": "^3.0.7"
26 | },
27 | "devDependencies": {
28 | "eslint": "^7.11.0",
29 | "eslint-plugin-vue": "^7.0.0-beta.4",
30 | "node-sass": "^4.14.1",
31 | "sass-loader": "^9.0.3",
32 | "style-resources-loader": "^1.3.3"
33 | }
34 | }
35 |
--------------------------------------------------------------------------------
/src/assets/SecretNetwork_BrandBook_Version01.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/SecretNetwork_BrandBook_Version01.pdf
--------------------------------------------------------------------------------
/src/assets/announcement.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/announcement.png
--------------------------------------------------------------------------------
/src/assets/arrow-down-black.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/src/assets/arrow-down-white.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/src/assets/arrow-left-blue.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/src/assets/arrow-left-turquoise.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/src/assets/arrow-right-black.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/src/assets/arrow-right-blue.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/src/assets/arrow-right-circle-blue.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/src/assets/arrow-right-circle-turquoise.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/src/assets/arrow-right-circle.svg:
--------------------------------------------------------------------------------
1 |
9 |
--------------------------------------------------------------------------------
/src/assets/arrow-right-turquoise.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/src/assets/arrow-right-white.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/src/assets/back_button_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/back_button_dark.png
--------------------------------------------------------------------------------
/src/assets/back_button_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/back_button_light.png
--------------------------------------------------------------------------------
/src/assets/badge-black.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/src/assets/badge-white.svg:
--------------------------------------------------------------------------------
1 |
7 |
--------------------------------------------------------------------------------
/src/assets/book.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/brandbook/analog.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/brandbook/analog.png
--------------------------------------------------------------------------------
/src/assets/brandbook/high-key.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/brandbook/high-key.png
--------------------------------------------------------------------------------
/src/assets/brandbook/primary-logo-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/brandbook/primary-logo-black.png
--------------------------------------------------------------------------------
/src/assets/brandbook/primary-logo-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/brandbook/primary-logo-white.png
--------------------------------------------------------------------------------
/src/assets/brandbook/secondary-logo-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/brandbook/secondary-logo-black.png
--------------------------------------------------------------------------------
/src/assets/brandbook/secondary-logo-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/brandbook/secondary-logo-white.png
--------------------------------------------------------------------------------
/src/assets/brandbook/topographical-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/brandbook/topographical-black.png
--------------------------------------------------------------------------------
/src/assets/brandbook/topographical-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/brandbook/topographical-white.png
--------------------------------------------------------------------------------
/src/assets/cards_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/cards_dark.png
--------------------------------------------------------------------------------
/src/assets/cards_dark_A.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/cards_dark_A.png
--------------------------------------------------------------------------------
/src/assets/cards_dark_B.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/cards_dark_B.png
--------------------------------------------------------------------------------
/src/assets/cards_dark_C.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/cards_dark_C.png
--------------------------------------------------------------------------------
/src/assets/cards_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/cards_light.png
--------------------------------------------------------------------------------
/src/assets/cards_light_A.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/cards_light_A.png
--------------------------------------------------------------------------------
/src/assets/cards_light_B.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/cards_light_B.png
--------------------------------------------------------------------------------
/src/assets/cards_light_C.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/cards_light_C.png
--------------------------------------------------------------------------------
/src/assets/chevron-down-dark.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/chevron-down-light.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/chevron-right-dark.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/chevron-right-light.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/chevron-up-dark.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/chevron-up-light.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/close-icon-black.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/src/assets/close-icon-white.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/src/assets/community-icons/discord-black.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/community-icons/discord-white.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/community-icons/forum-black.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/community-icons/forum-white.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/community-icons/github-black.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/community-icons/github-white.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/community-icons/telegram-black.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/community-icons/telegram-white.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/community-icons/twitter-black.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/community-icons/twitter-white.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/community-icons/youtube-black.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/community-icons/youtube-white.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/community_card_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/community_card_dark.png
--------------------------------------------------------------------------------
/src/assets/community_card_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/community_card_light.png
--------------------------------------------------------------------------------
/src/assets/discord-black.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/discord-white.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/eth-bridge.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/eth-bridge.jpg
--------------------------------------------------------------------------------
/src/assets/github-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/github-black.png
--------------------------------------------------------------------------------
/src/assets/github-black.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/github-white.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/github-white.png
--------------------------------------------------------------------------------
/src/assets/github-white.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/grid_item_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/grid_item_dark.png
--------------------------------------------------------------------------------
/src/assets/grid_item_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/grid_item_light.png
--------------------------------------------------------------------------------
/src/assets/horizontal_card_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/horizontal_card_dark.png
--------------------------------------------------------------------------------
/src/assets/horizontal_card_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/horizontal_card_light.png
--------------------------------------------------------------------------------
/src/assets/large_announcement_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/large_announcement_dark.png
--------------------------------------------------------------------------------
/src/assets/large_announcement_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/large_announcement_light.png
--------------------------------------------------------------------------------
/src/assets/library.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/logo-seal-outline-black.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/src/assets/logo-seal-outline-white.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/src/assets/logo-seal.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/src/assets/manual-guide.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/media_card_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/media_card_dark.png
--------------------------------------------------------------------------------
/src/assets/media_card_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/media_card_light.png
--------------------------------------------------------------------------------
/src/assets/menu-black.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/src/assets/menu-white.svg:
--------------------------------------------------------------------------------
1 |
6 |
--------------------------------------------------------------------------------
/src/assets/mono.svg:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/src/assets/moon.svg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/src/assets/next_button_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/next_button_dark.png
--------------------------------------------------------------------------------
/src/assets/next_button_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/next_button_light.png
--------------------------------------------------------------------------------
/src/assets/pin-black.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/src/assets/pin-white.svg:
--------------------------------------------------------------------------------
1 |
5 |
--------------------------------------------------------------------------------
/src/assets/podcasts/listen-on-apple-podcasts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/podcasts/listen-on-apple-podcasts.png
--------------------------------------------------------------------------------
/src/assets/podcasts/listen-on-google-podcasts.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/podcasts/listen-on-google-podcasts.png
--------------------------------------------------------------------------------
/src/assets/podcasts/listen-on-soundcloud.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/podcasts/listen-on-soundcloud.png
--------------------------------------------------------------------------------
/src/assets/podcasts/listen-on-spotify.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/podcasts/listen-on-spotify.png
--------------------------------------------------------------------------------
/src/assets/run.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/scrt-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/scrt-logo.png
--------------------------------------------------------------------------------
/src/assets/separator-black.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/separator-white.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/small_announcement_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/small_announcement_dark.png
--------------------------------------------------------------------------------
/src/assets/small_announcement_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/small_announcement_light.png
--------------------------------------------------------------------------------
/src/assets/source-code.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/sun.svg:
--------------------------------------------------------------------------------
1 |
12 |
--------------------------------------------------------------------------------
/src/assets/telegram-black.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/telegram-white.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/twitter-black.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/twitter-white.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/vertical_card_dark.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/vertical_card_dark.png
--------------------------------------------------------------------------------
/src/assets/vertical_card_light.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/vertical_card_light.png
--------------------------------------------------------------------------------
/src/assets/youtube-black.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/assets/youtube-white.svg:
--------------------------------------------------------------------------------
1 |
4 |
--------------------------------------------------------------------------------
/src/components/AlertBar.vue:
--------------------------------------------------------------------------------
1 |
2 | {{ hex }} {{ rgb }} {{ name }} {{ node.description | truncate }} {{ node.description | truncate }}{{ name }}
8 |
6 |
7 |
8 |
{{ title }}
7 |
5 |
6 |
7 |
6 |
6 |