├── .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 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/assets/arrow-down-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/assets/arrow-left-blue.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/assets/arrow-left-turquoise.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/assets/arrow-right-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/assets/arrow-right-blue.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/assets/arrow-right-circle-blue.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/arrow-right-circle-turquoise.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/arrow-right-circle.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 8 | 9 | -------------------------------------------------------------------------------- /src/assets/arrow-right-turquoise.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/assets/arrow-right-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/assets/badge-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/assets/book.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 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 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/chevron-down-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/chevron-right-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/chevron-right-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/chevron-up-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/chevron-up-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/close-icon-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/assets/close-icon-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/assets/community-icons/discord-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/community-icons/discord-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/community-icons/forum-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/community-icons/forum-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/community-icons/github-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/community-icons/github-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/community-icons/telegram-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/community-icons/telegram-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/community-icons/twitter-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/community-icons/twitter-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/community-icons/youtube-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/community-icons/youtube-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 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 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/discord-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 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 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/github-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/github-white.png -------------------------------------------------------------------------------- /src/assets/github-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 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 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/logo-seal-outline-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/assets/logo-seal-outline-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/assets/logo-seal.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/assets/manual-guide.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 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 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/assets/menu-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/assets/mono.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | Group 2 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /src/assets/moon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /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 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /src/assets/pin-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/scrt-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/assets/scrt-logo.png -------------------------------------------------------------------------------- /src/assets/separator-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/separator-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 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 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/sun.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /src/assets/telegram-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/telegram-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/twitter-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/twitter-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 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 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/assets/youtube-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/components/AlertBar.vue: -------------------------------------------------------------------------------- 1 | 9 | 10 | 19 | 20 | 79 | -------------------------------------------------------------------------------- /src/components/Announcement.vue: -------------------------------------------------------------------------------- 1 | 7 | 8 | 41 | -------------------------------------------------------------------------------- /src/components/BackButton.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 32 | 33 | 152 | -------------------------------------------------------------------------------- /src/components/Card.vue: -------------------------------------------------------------------------------- 1 | 15 | 16 | 30 | 31 | 90 | -------------------------------------------------------------------------------- /src/components/CardHolder.vue: -------------------------------------------------------------------------------- 1 | 8 | 9 | 19 | 20 | 38 | -------------------------------------------------------------------------------- /src/components/ColorPalette.vue: -------------------------------------------------------------------------------- 1 | 10 | 11 | 25 | 26 | -------------------------------------------------------------------------------- /src/components/CommitteeCard.vue: -------------------------------------------------------------------------------- 1 | 11 | 12 | 66 | -------------------------------------------------------------------------------- /src/components/CommunityCard.vue: -------------------------------------------------------------------------------- 1 | 11 | 12 | 31 | 32 | 60 | -------------------------------------------------------------------------------- /src/components/DeveloperCard.vue: -------------------------------------------------------------------------------- 1 | 14 | 34 | 35 | 93 | -------------------------------------------------------------------------------- /src/components/Faq.vue: -------------------------------------------------------------------------------- 1 | 9 | 10 | 24 | 25 | 89 | -------------------------------------------------------------------------------- /src/components/GridItem.vue: -------------------------------------------------------------------------------- 1 | 17 | 18 | 80 | 81 | 192 | -------------------------------------------------------------------------------- /src/components/MainPageHero.vue: -------------------------------------------------------------------------------- 1 | 20 | 21 | 132 | -------------------------------------------------------------------------------- /src/components/MediaCard.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 100 | 101 | 220 | -------------------------------------------------------------------------------- /src/components/Newsletter.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | 98 | -------------------------------------------------------------------------------- /src/components/NextButton.vue: -------------------------------------------------------------------------------- 1 | 16 | 17 | 37 | 38 | 167 | -------------------------------------------------------------------------------- /src/components/Separator.vue: -------------------------------------------------------------------------------- 1 | 9 | 10 | 41 | -------------------------------------------------------------------------------- /src/components/SimpleSection.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 31 | 32 | 41 | -------------------------------------------------------------------------------- /src/components/SmallAnnouncement.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 64 | -------------------------------------------------------------------------------- /src/components/Submenu.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | 24 | 25 | 141 | -------------------------------------------------------------------------------- /src/components/ThemedImage.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 47 | -------------------------------------------------------------------------------- /src/components/VideoCard.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 27 | 28 | -------------------------------------------------------------------------------- /src/components/blog/BlogAuthor.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 24 | 25 | 26 | 60 | -------------------------------------------------------------------------------- /src/components/blog/BlogHero.vue: -------------------------------------------------------------------------------- 1 | 13 | 14 | 67 | -------------------------------------------------------------------------------- /src/components/blog/FeaturedPosts.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 12 | 13 | 14 | { 15 | posts: allGhostPost(filter: { featured: { eq: true }}, sortBy: "published_at", limit: 8) { 16 | edges { 17 | node { 18 | title 19 | description: excerpt 20 | date: published_at (format: "D MMM YYYY") 21 | id 22 | slug 23 | reading_time 24 | primary_tag { 25 | name 26 | } 27 | primary_author { 28 | name 29 | profile_image 30 | } 31 | } 32 | } 33 | } 34 | } 35 | 36 | -------------------------------------------------------------------------------- /src/components/blog/LatestPosts.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 12 | 13 | 14 | { 15 | posts: allGhostPost(sortBy: "published_at", order: DESC, limit: 3) { 16 | edges { 17 | node { 18 | title 19 | description: excerpt 20 | date: published_at (format: "D MMM YYYY") 21 | id 22 | slug 23 | reading_time 24 | primary_tag { 25 | name 26 | } 27 | primary_author { 28 | name 29 | profile_image 30 | } 31 | } 32 | } 33 | } 34 | } 35 | 36 | -------------------------------------------------------------------------------- /src/components/blog/LatestPostsTwelve.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 17 | 18 | 19 | { 20 | posts: allGhostPost(sortBy: "published_at", order: DESC, limit: 9) { 21 | edges { 22 | node { 23 | title 24 | description: excerpt 25 | date: published_at (format: "D MMM YYYY") 26 | id 27 | slug 28 | reading_time 29 | primary_tag { 30 | name 31 | } 32 | primary_author { 33 | name 34 | profile_image 35 | } 36 | } 37 | } 38 | } 39 | } 40 | 41 | -------------------------------------------------------------------------------- /src/components/blog/Posts.vue: -------------------------------------------------------------------------------- 1 | 19 | 20 | 52 | -------------------------------------------------------------------------------- /src/components/blog/PostsFeatured.vue: -------------------------------------------------------------------------------- 1 | 19 | 20 | 42 | -------------------------------------------------------------------------------- /src/components/home/HomeCard.vue: -------------------------------------------------------------------------------- 1 | 8 | 9 | 19 | 20 | 111 | -------------------------------------------------------------------------------- /src/config/open-graph.js: -------------------------------------------------------------------------------- 1 | export default [ 2 | { 3 | key: 'og:url', 4 | property: 'og:url', 5 | content: 'https://scrt.network/', 6 | }, 7 | { 8 | key: 'og:type', 9 | property: 'og:type', 10 | content: 'website', 11 | }, 12 | { 13 | key: 'og:title', 14 | property: 'og:title', 15 | content: 'Secret Network', 16 | }, 17 | { 18 | key: 'og:description', 19 | property: 'og:description', 20 | content: 'Secret Network is a blockchain-based, open-source protocol that lets anyone perform computations on encrypted data, bringing privacy to smart contracts and public blockchains.', 21 | }, 22 | { 23 | key: 'og:image', 24 | property: 'og:image', 25 | content: 'https://scrt.network/cover.png', 26 | }, 27 | { 28 | key: 'twitter:card', 29 | property: 'twitter:card', 30 | content: 'summary_large_image', 31 | }, 32 | { 33 | key: 'twitter:image', 34 | property: 'twitter:image', 35 | content: 'https://scrt.network/cover.png', 36 | }, 37 | ] 38 | -------------------------------------------------------------------------------- /src/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/src/favicon.png -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ${head} 5 | 6 | 7 | 16 | ${app} 17 | ${scripts} 18 | 19 | 20 | -------------------------------------------------------------------------------- /src/layouts/BlogEntryLayout.vue: -------------------------------------------------------------------------------- 1 | 9 | 10 | 18 | -------------------------------------------------------------------------------- /src/layouts/DocumentationLayout.vue: -------------------------------------------------------------------------------- 1 | 30 | 31 | 81 | 82 | 171 | -------------------------------------------------------------------------------- /src/layouts/HomePageLayout.vue: -------------------------------------------------------------------------------- 1 | 7 | 8 | 15 | -------------------------------------------------------------------------------- /src/layouts/MainPageLayout.vue: -------------------------------------------------------------------------------- 1 | 9 | 10 | 24 | -------------------------------------------------------------------------------- /src/layouts/README.md: -------------------------------------------------------------------------------- 1 | Layout components are used to wrap pages and templates. Layouts should contain components like headers, footers or sidebars that will be used across the site. 2 | 3 | Learn more about Layouts: https://gridsome.org/docs/layouts/ 4 | 5 | You can delete this file. 6 | -------------------------------------------------------------------------------- /src/layouts/ThankYouLayout.vue: -------------------------------------------------------------------------------- 1 | 15 | 16 | 23 | 24 | 25 | 185 | -------------------------------------------------------------------------------- /src/layouts/docs-nav.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "text":"Introduction", 4 | "sublinks":[ 5 | { 6 | "href": "/developers/introduction/what-is-secret-network", 7 | "text": "What is Secret Network?" 8 | }, 9 | { 10 | "href":"/developers/introduction/overview", 11 | "text":"Overview" 12 | }, 13 | { 14 | "href":"/developers/introduction/network-architecture", 15 | "text":"Network architecture" 16 | }, 17 | { 18 | "href":"/developers/introduction/development-roadmap", 19 | "text":"Development roadmap" 20 | }, 21 | { 22 | "href":"/developers/introduction/using-scrt-with-ledger-cli", 23 | "text":"Using scrt with ledger CLI" 24 | } 25 | ] 26 | }, 27 | { 28 | "text":"Developing Secret Contracts", 29 | "sublinks":[ 30 | { 31 | "href": "/developers/secret-contract-devs/secret-contract-devs", 32 | "text":"Getting Started" 33 | }, 34 | { 35 | "href":"/developers/secret-contract-devs/secret-contracts", 36 | "text":"Secret contracts" 37 | }, 38 | { 39 | "href":"/developers/secret-contract-devs/privacy-model-of-secret-contracts", 40 | "text":"Privacy Model" 41 | }, 42 | { 43 | "href":"/developers/secret-contract-devs/secret-contract-dev-guide", 44 | "text":"Development Guide" 45 | }, 46 | { 47 | "href":"/developers/secret-contract-devs/quickstart", 48 | "text":"Quickstart" 49 | }, 50 | { 51 | "href":"/developers/secret-contract-devs/secretjs", 52 | "text":"Secretjs" 53 | } 54 | ] 55 | }, 56 | { 57 | "text":"Node Operators", 58 | "sublinks":[ 59 | { 60 | "href":"/developers/node-operators/secret-light-client", 61 | "text":"Secret Light Client" 62 | }, 63 | { 64 | "href":"/developers/node-operators/validators/validators", 65 | "text":"Validators" 66 | }, 67 | { 68 | "href":"/developers/node-operators/validators/sgx-compliance", 69 | "text":"SGX Compliance" 70 | }, 71 | { 72 | "href":"/developers/node-operators/validators/setup-sgx", 73 | "text":"Setup SGX" 74 | }, 75 | { 76 | "href":"/developers/node-operators/validators/run-a-full-node", 77 | "text":"Run a Full Node" 78 | }, 79 | { 80 | "href":"/developers/node-operators/validators/join-as-a-validator", 81 | "text":"Join as a Validator" 82 | }, 83 | { 84 | "href":"/developers/node-operators/validators/backup-a-validator", 85 | "text":"Backup a Validator" 86 | }, 87 | { 88 | "href":"/developers/node-operators/validators/migrate-a-validator", 89 | "text":"Migrate a Validator" 90 | }, 91 | { 92 | "href":"/developers/node-operators/validators/sentry-nodes", 93 | "text":"Sentry Nodes" 94 | }, 95 | { 96 | "href":"/developers/node-operators/validators/vulcan-netwrok-upgrade", 97 | "text":"Vulcan Netwrok Upgrade" 98 | }, 99 | { 100 | "href":"/developers/node-operators/delegators/delegators", 101 | "text":"Delegators" 102 | } 103 | ] 104 | }, 105 | { 106 | "text":"Testnet", 107 | "sublinks":[ 108 | { 109 | "href":"/developers/testnet/validators-cli/setup-sgx", 110 | "text":"Setup SGX" 111 | }, 112 | { 113 | "href":"/developers/testnet/validators-cli/verify-sgx", 114 | "text":"Verify SGX" 115 | }, 116 | { 117 | "href":"/developers/testnet/validators-cli/run-a-full-node", 118 | "text":"Run a Full Node" 119 | }, 120 | { 121 | "href":"/developers/testnet/validators-cli/run-a-full-node-docker", 122 | "text":"Run a Full Node Docker" 123 | }, 124 | { 125 | "href":"/developers/testnet/validators-cli/join-as-a-validator", 126 | "text":"Join as a Validator" 127 | }, 128 | { 129 | "href":"/developers/testnet/validators-cli/backup-a-validator", 130 | "text":"Backup a Validator" 131 | }, 132 | { 133 | "href":"/developers/testnet/validators-cli/migrate-a-validator", 134 | "text":"Migrate a Validator" 135 | } 136 | ] 137 | }, 138 | { 139 | "text":"Protocol", 140 | "sublinks":[ 141 | { 142 | "href":"/developers/protocol/protocol", 143 | "text":"About the Protocol" 144 | }, 145 | { 146 | "href":"/developers/protocol/components", 147 | "text":"Components" 148 | }, 149 | { 150 | "href":"/developers/protocol/encryption", 151 | "text":"Encryption" 152 | }, 153 | { 154 | "href":"/developers/protocol/transactions", 155 | "text":"Transactions" 156 | }, 157 | { 158 | "href":"/developers/protocol/governance", 159 | "text":"Governance" 160 | }, 161 | { 162 | "href":"/developers/protocol/intel-sgx", 163 | "text":"Intel" 164 | } 165 | ] 166 | } 167 | ] 168 | -------------------------------------------------------------------------------- /src/layouts/subs/MediaLayout.vue: -------------------------------------------------------------------------------- 1 | 21 | 22 | 39 | 40 | 49 | -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | // This is the main.js file. Import global CSS and scripts here. 2 | // The Client API can be used here. Learn more: gridsome.org/docs/client-api 3 | import openGraph from './config/open-graph' 4 | 5 | import './sass/index.scss' 6 | 7 | import Flare from '@lkmx/flare-legacy/src/main' 8 | 9 | import Faq from './components/Faq' 10 | import Newsletter from './components/Newsletter' 11 | import HomePageHero from './components/home/HomePageHero' 12 | import HomeCard from './components/home/HomeCard' 13 | import Separator from './components/Separator' 14 | import Card from './components/Card' 15 | import CardHolder from './components/CardHolder' 16 | import CommitteeCard from './components/CommitteeCard' 17 | import DeveloperCard from './components/DeveloperCard' 18 | import ThemedImage from '@/components/ThemedImage' 19 | import LatestPosts from '@/components/blog/LatestPosts' 20 | import LatestPostsTwelve from '@/components/blog/LatestPostsTwelve' 21 | import FeaturedPosts from '@/components/blog/FeaturedPosts' 22 | import SimpleSection from '@/components/SimpleSection' 23 | import BlogCardFeatured from '@/components/blog/BlogCardFeatured' 24 | import PostsFeatured from '@/components/blog/PostsFeatured' 25 | import MediaCard from '@/components/MediaCard' 26 | import NextButton from './components/NextButton' 27 | import GridItem from './components/GridItem' 28 | import CommunityCard from './components/CommunityCard' 29 | import Announcement from './components/Announcement' 30 | import SmallAnnouncement from './components/SmallAnnouncement' 31 | import BackButton from './components/BackButton' 32 | import ColorPalette from '@/components/ColorPalette' 33 | import AlertBar from './components/AlertBar' 34 | //import Calendar from './components/Calendar' 35 | import Submenu from './components/Submenu' 36 | import VideoCard from './components/VideoCard' 37 | import VueSocialSharing from 'vue-social-sharing' 38 | 39 | require('typeface-hind'); 40 | require('typeface-montserrat'); 41 | require("gridsome-plugin-remark-prismjs-all/themes/night-owl.css"); 42 | 43 | export default function (Vue, { router, head, isClient }) { 44 | openGraph.forEach(item => head.meta.push(item)) 45 | 46 | head.script.push({ 47 | src: 'https://apis.google.com/js/api.js', 48 | body: true 49 | }) 50 | 51 | head.link.push({ 52 | rel: "stylesheet", 53 | href: "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" 54 | }) 55 | 56 | Vue.config.productionTip = false 57 | Vue.use(Flare) 58 | Vue.use(VueSocialSharing); 59 | 60 | Vue.component('Faq', Faq) 61 | Vue.component('Newsletter', Newsletter) 62 | Vue.component('HomePageHero', HomePageHero) 63 | Vue.component('HomeCard', HomeCard) 64 | Vue.component('Separator', Separator) 65 | Vue.component('Card', Card) 66 | Vue.component('CardHolder', CardHolder) 67 | Vue.component('DeveloperCard', DeveloperCard) 68 | Vue.component('CommitteeCard', CommitteeCard) 69 | Vue.component('ThemedImage', ThemedImage) 70 | Vue.component('LatestPosts', LatestPosts) 71 | Vue.component('LatestPostsTwelve', LatestPostsTwelve) 72 | Vue.component('FeaturedPosts', FeaturedPosts) 73 | Vue.component('SimpleSection', SimpleSection) 74 | Vue.component('BlogCardFeatured', BlogCardFeatured) 75 | Vue.component('PostsFeatured', PostsFeatured) 76 | Vue.component('MediaCard', MediaCard) 77 | Vue.component('NextButton', NextButton) 78 | Vue.component('GridItem', GridItem) 79 | Vue.component('CommunityCard', CommunityCard) 80 | Vue.component('Announcement', Announcement) 81 | Vue.component('SmallAnnouncement', SmallAnnouncement) 82 | Vue.component('BackButton', BackButton) 83 | Vue.component('ColorPalette', ColorPalette) 84 | Vue.component('AlertBar', AlertBar) 85 | //Vue.component('Calendar', Calendar) 86 | Vue.component('Submenu', Submenu) 87 | Vue.component('VideoCard', VideoCard) 88 | 89 | if (isClient) { 90 | } 91 | } -------------------------------------------------------------------------------- /src/pages/Blog.vue: -------------------------------------------------------------------------------- 1 | 41 | 42 | 63 | 64 | 112 | 113 | 114 | { 115 | posts: allGhostPost(sortBy: "published_at", order: DESC) { 116 | edges { 117 | node { 118 | title 119 | description: excerpt 120 | date: published_at (format: "D MMM YYYY") 121 | id 122 | slug 123 | reading_time 124 | primary_tag { 125 | name 126 | id 127 | slug 128 | } 129 | primary_author { 130 | name 131 | profile_image 132 | } 133 | } 134 | } 135 | } 136 | 137 | tags: allGhostTag { 138 | edges { 139 | node { 140 | name 141 | id 142 | ghostId 143 | } 144 | } 145 | } 146 | } 147 | 148 | 149 | 182 | -------------------------------------------------------------------------------- /src/sass/_tokens.scss: -------------------------------------------------------------------------------- 1 | // Colors 2 | $primary-black-color: #151A20; 3 | //$primary-black-color: #1B1B1B; 4 | $primary-purple-color: #5f5f6B; 5 | $primary-orange-color: #EA7534; 6 | $primary-cream-color: #E5C7A3; 7 | $primary-blue-color: #4195C4; 8 | $primary-yellow-color: #F4D22A; 9 | $primary-red-color: #D53A2C; 10 | $primary-green-color: #80c483; 11 | $primary-white-color: #FFFFFF; 12 | 13 | $primary-colors: ( 14 | "black": $primary-black-color, 15 | "purple": $primary-purple-color, 16 | "orange": $primary-orange-color, 17 | "cream": $primary-cream-color, 18 | "blue": $primary-blue-color, 19 | "yellow": $primary-yellow-color, 20 | "red": $primary-red-color, 21 | "green": $primary-green-color, 22 | "white": $primary-white-color 23 | ); 24 | 25 | $secondary-purple-color: #A9A7D3; 26 | $secondary-yellow-color: #F4DD7D; 27 | $secondary-green-color: #A6DDA9; 28 | $secondary-peach-color: #FFDEC0; 29 | $secondary-turquoise-color: #83D9DD; 30 | $secondary-pink-color: #E4CDE8; 31 | $secondary-red-color: #EF726C; 32 | $secondary-orange-color: #F2A37C; 33 | $secondary-blue-color: #92BCEF; 34 | 35 | $secondary-colors: ( 36 | "purple": $secondary-purple-color, 37 | "yellow": $secondary-yellow-color, 38 | "green": $secondary-green-color, 39 | "peach": $secondary-peach-color, 40 | "turquoise": $secondary-turquoise-color, 41 | "pink": $secondary-pink-color, 42 | "red": $secondary-red-color, 43 | "orange": $secondary-orange-color, 44 | "blue": $secondary-blue-color 45 | ); 46 | 47 | $high-key-purple-color: #7A5CD6; 48 | $high-key-pink-color: #FF144E; 49 | $high-key-orange-color: #FF6510; 50 | $high-key-peach-color: #FFCE99; 51 | $high-key-yellow-color: #FFEC00; 52 | $high-key-green-color: #25A02B; 53 | $high-key-turquoise-color: #00DDBE; 54 | $high-key-blue-color: #00B3EA; 55 | 56 | $high-key-colors: ( 57 | "purple": $high-key-purple-color, 58 | "pink": $high-key-pink-color, 59 | "orange": $high-key-orange-color, 60 | "peach": $high-key-peach-color, 61 | "yellow": $high-key-yellow-color, 62 | "green": $high-key-green-color, 63 | "turquoise": $high-key-turquoise-color, 64 | "blue": $high-key-blue-color 65 | ); 66 | 67 | $submenu-colors: ( 68 | "black": $primary-black-color, 69 | "purple": $primary-purple-color, 70 | "orange": $primary-orange-color, 71 | "cream": $primary-cream-color, 72 | "blue": $primary-blue-color, 73 | "yellow": $primary-yellow-color, 74 | "red": $primary-red-color, 75 | "green": $primary-green-color, 76 | "white": $primary-white-color, 77 | "secondary-purple": $secondary-purple-color, 78 | "secondary-yellow": $secondary-yellow-color, 79 | "secondary-green": $secondary-green-color, 80 | "secondary-peach": $secondary-peach-color, 81 | "secondary-turquoise": $secondary-turquoise-color, 82 | "secondary-pink": $secondary-pink-color, 83 | "secondary-red": $secondary-red-color, 84 | "secondary-orange": $secondary-orange-color, 85 | "secondary-blue": $secondary-blue-color 86 | ); 87 | 88 | // Texts 89 | $text-font: 'Hind', sans-serif; 90 | $text-color: var(--theme-fg); 91 | $headers-default-font: 'Montserrat'; 92 | 93 | $secondary-text-font: Georgia, serif; 94 | $secondary-font-size: 18px; 95 | 96 | // Headings 97 | $h1-text-size: 64px; 98 | $h3-text-size: 28px; 99 | $h3-text-margin: 0 0 25px 0; 100 | $h4-text-size: 22px; 101 | $h4-text-weight: bold; 102 | 103 | // Grids 104 | $grid-justify-items: center; 105 | $grid-tablet-justify-items: center; 106 | $grid-mobile-justify-items: center; 107 | $grid-column-gap: 34px; 108 | $grid-row-gap: 34px; 109 | $grid-mobile-row-gap: 34px; 110 | 111 | // Links 112 | $links-text-color: var(--theme-fg); 113 | $links-text-hover-color: $primary-purple-color; 114 | 115 | // Header 116 | $header-position: fixed; 117 | $header-height: 68px; 118 | $header-text-color: var(--theme-fg); 119 | $header-background-color: var(--theme-bg); 120 | $header-nav-active-color: var(--theme-fg); 121 | $header-nav-hover-color: var(--theme-fg); 122 | $header-nav-visited-color: var(--theme-fg); 123 | $header-nav-justify-items: start; 124 | $header-nav-spacing: 0px; 125 | $header-nav-default-color: var(--theme-fg); 126 | $header-nav-background-color: var(--theme-bg); 127 | $header-nav-color: var(--theme-fg); 128 | $header-actions-space-width: 232px; 129 | $header-logo-space-width: 142px; 130 | $header-nav-close-toggle-size: 24px; 131 | $header-nav-items-width: 150px; 132 | $header-nav-items: 6; 133 | $header-actions-space-width: 281px; 134 | 135 | 136 | // Hero 137 | $hero-headings-text-color: var(--theme-fg); 138 | 139 | // Footer 140 | $footer-text-color: var(--theme-fg); 141 | $footer-background-color: var(--theme-bg); 142 | $footer-link-default-color: var(--theme-fg); 143 | $footer-link-hover-color: $primary-purple-color; 144 | $footer-link-active-color: var(--theme-fg); 145 | $footer-link-visited-color: var(--theme-fg); 146 | 147 | // Triplet Columns 148 | $triplet-column-row-gap: 34px; 149 | 150 | // Themes 151 | $default-theme: dark; 152 | 153 | $text-selection-color: $primary-yellow-color; 154 | 155 | $themes: ( 156 | "dark": ( 157 | "fg": white, 158 | "bg": $primary-black-color 159 | ), 160 | "light": ( 161 | "fg": $primary-black-color, 162 | "bg": white 163 | ), 164 | "dark-colored": ( 165 | "fg": white, 166 | "bg": $primary-black-color 167 | ), 168 | "light-colored": ( 169 | "fg": $primary-black-color, 170 | "bg": white 171 | ) 172 | ); 173 | 174 | //Paragraph 175 | $paragraph-line-height: 1.6em; 176 | $paragraph-text-size: 20px; 177 | -------------------------------------------------------------------------------- /src/sass/index.scss: -------------------------------------------------------------------------------- 1 | @import "tokens"; 2 | @import "~@lkmx/flare-legacy/src/flare"; 3 | 4 | html { 5 | --purple-color: #{$secondary-purple-color}; 6 | --yellow-color: #{$secondary-yellow-color}; 7 | --green-color: #{$secondary-green-color}; 8 | --peach-color: #{$secondary-peach-color}; 9 | --turquoise-color: #{$secondary-turquoise-color}; 10 | --pink-color: #{$secondary-pink-color}; 11 | --red-color: #{$secondary-red-color}; 12 | --orange-color: #{$secondary-orange-color}; 13 | --blue-color: #{$secondary-blue-color}; 14 | 15 | --primary-black-color: #{$primary-black-color}; 16 | --primary-purple-color: #{$primary-purple-color}; 17 | --primary-orange-color: #{$primary-orange-color}; 18 | --primary-cream-color: #{$primary-cream-color}; 19 | --primary-blue-color: #{$primary-blue-color}; 20 | --primary-yellow-color: #{$primary-yellow-color}; 21 | --primary-red-color: #{$primary-red-color}; 22 | --primary-green-color: #{$primary-green-color}; 23 | --primary-white-color: #{$primary-white-color}; 24 | } 25 | 26 | .column { 27 | padding: $gutter-large 0; 28 | } 29 | 30 | a { 31 | text-decoration: none; 32 | } 33 | 34 | main { 35 | h1 { 36 | @include respond-to("medium and down") { 37 | font-size: $h2-text-size; 38 | } 39 | } 40 | blockquote { 41 | font-size: $base-size; 42 | margin: 0 0 $gutter-xlarge; 43 | padding: 0 $gutter; 44 | border-left: 3px solid $primary-blue-color; 45 | line-height: $paragraph-line-height; 46 | } 47 | a { 48 | text-decoration: underline; 49 | } 50 | } 51 | 52 | hr { 53 | width: 100%; 54 | margin: $gutter-large 0; 55 | } 56 | 57 | button { 58 | outline: unset; 59 | } 60 | -------------------------------------------------------------------------------- /src/templates/Content.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 15 | 16 | 17 | query ($id: ID!) { 18 | content(id: $id) { 19 | title 20 | content 21 | nav 22 | } 23 | } 24 | 25 | 26 | 31 | -------------------------------------------------------------------------------- /src/templates/README.md: -------------------------------------------------------------------------------- 1 | Templates for **GraphQL collections** should be added here. 2 | To create a template for a collection called `WordPressPost` 3 | create a file named `WordPressPost.vue` in this folder. 4 | 5 | Learn more: https://gridsome.org/docs/templates/ 6 | 7 | You can delete this file. 8 | -------------------------------------------------------------------------------- /static/README.md: -------------------------------------------------------------------------------- 1 | Add static files here. Files in this directory will be copied directly to `dist` folder during build. For example, /static/robots.txt will be located at https://yoursite.com/robots.txt. 2 | 3 | This file should be deleted. -------------------------------------------------------------------------------- /static/SecretNetwork_BrandBook_Version01.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/static/SecretNetwork_BrandBook_Version01.pdf -------------------------------------------------------------------------------- /static/analog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/static/analog.png -------------------------------------------------------------------------------- /static/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/static/cover.png -------------------------------------------------------------------------------- /static/high-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/static/high-key.png -------------------------------------------------------------------------------- /static/secretnetwork-logo-primary-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/static/secretnetwork-logo-primary-black.png -------------------------------------------------------------------------------- /static/secretnetwork-logo-primary-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 10 | 13 | 23 | 24 | 25 | 26 | 34 | 40 | 45 | 47 | 53 | 56 | 57 | 58 | 61 | 67 | 70 | 72 | 81 | 83 | 85 | 86 | 87 | 88 | 89 | -------------------------------------------------------------------------------- /static/secretnetwork-logo-primary-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/static/secretnetwork-logo-primary-white.png -------------------------------------------------------------------------------- /static/secretnetwork-logo-secondary-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/static/secretnetwork-logo-secondary-black.png -------------------------------------------------------------------------------- /static/secretnetwork-logo-secondary-black.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 10 | 13 | 23 | 24 | 25 | 33 | 39 | 44 | 46 | 52 | 55 | 56 | 57 | 60 | 66 | 69 | 71 | 79 | 81 | 82 | 83 | 84 | 85 | -------------------------------------------------------------------------------- /static/secretnetwork-logo-secondary-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/static/secretnetwork-logo-secondary-white.png -------------------------------------------------------------------------------- /static/secretnetwork-logo-secondary-white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 8 | 9 | 10 | 13 | 23 | 24 | 25 | 33 | 39 | 44 | 46 | 52 | 55 | 56 | 57 | 60 | 66 | 69 | 71 | 79 | 81 | 82 | 83 | 84 | 85 | -------------------------------------------------------------------------------- /static/topographical-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/static/topographical-black.png -------------------------------------------------------------------------------- /static/topographical-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecretFoundation/SecretWebsite/05f98eaaee219db80f1d08f75e5ad8e767373b8f/static/topographical-white.png --------------------------------------------------------------------------------