├── .gitignore ├── .nova └── Configuration.json ├── README.md ├── app.vue ├── assets ├── fonts │ ├── IBMPlexMono-Regular.ttf │ ├── Inter-ExtraBold.eot │ ├── Inter-ExtraBold.svg │ ├── Inter-ExtraBold.ttf │ ├── Inter-ExtraBold.woff │ ├── Inter-ExtraBold.woff2 │ ├── Inter-Regular.eot │ ├── Inter-Regular.svg │ ├── Inter-Regular.ttf │ ├── Inter-Regular.woff │ └── Inter-Regular.woff2 ├── images │ ├── brad-siefert-photo.jpg │ ├── confetti.png │ ├── favicons │ │ ├── Automators.png │ │ ├── Bradsiefert.png │ │ ├── CultofMac.png │ │ ├── Github.png │ │ ├── JordanMerrick.png │ │ ├── MacSparky.jpg │ │ ├── Macrumors.png │ │ ├── Macstories.png │ │ ├── Medium.png │ │ ├── MikeBeasley.png │ │ ├── Reddit.png │ │ ├── RosemaryOrchard.png │ │ ├── RoutineHub.png │ │ ├── SCPL.png │ │ ├── ShareShortcuts.png │ │ ├── Sharecuts.png │ │ ├── Shortcasts.png │ │ ├── ShortcutHub.png │ │ ├── Shortcutor.png │ │ ├── ShortcutsGallery.png │ │ ├── ShortcutsJS.png │ │ ├── ShortcutsWeb.png │ │ ├── ShortcutsbyApple256.png │ │ ├── Showcuts.png │ │ ├── SiriCuts.png │ │ ├── SixColors.png │ │ ├── TheSweetSetup.png │ │ ├── TheUntitledSite.png │ │ ├── TheVerge.png │ │ ├── Wikipedia.png │ │ ├── discord.jpg │ │ ├── iosshortcut.png │ │ ├── relayfm.png │ │ ├── siri-shortcuts.de.png │ │ ├── slack.png │ │ ├── takecontrolbooks.png │ │ ├── techcrunch.png │ │ ├── telegram.png │ │ ├── twitter.jpg │ │ └── workflow.png │ ├── link-default-avatar.png │ ├── logo.svg │ └── max-tweet.jpg └── scss │ ├── fontfaces.css │ ├── styles.scss │ └── variables.scss ├── nuxt.config.ts ├── package.json ├── public ├── favicon.ico ├── robots.txt └── sharingtile.jpg ├── server └── tsconfig.json ├── src ├── .temp │ ├── config.js │ ├── constants.js │ ├── icons.js │ ├── now.js │ ├── plugins-client.js │ ├── plugins-server.js │ └── routes.js ├── components │ ├── Collections.vue │ ├── HeroBody.vue │ ├── Link.vue │ └── LinkApp.vue ├── favicon.png ├── layouts │ └── Default.vue ├── main.js └── pages │ ├── 404.vue │ ├── About.vue │ ├── Communities.vue │ ├── Enthusiastcreators.vue │ ├── Extensionapps.vue │ ├── Gallerysites.vue │ ├── History.vue │ ├── Index.vue │ ├── International.vue │ ├── Newsandblogs.vue │ ├── Podcasts.vue │ ├── Powertools.vue │ ├── README.md │ ├── Submitalink.vue │ ├── Success.vue │ └── Training.vue └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/.gitignore -------------------------------------------------------------------------------- /.nova/Configuration.json: -------------------------------------------------------------------------------- 1 | { 2 | "tommasonegri.vue.serverRunning" : true 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/README.md -------------------------------------------------------------------------------- /app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/app.vue -------------------------------------------------------------------------------- /assets/fonts/IBMPlexMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/fonts/IBMPlexMono-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Inter-ExtraBold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/fonts/Inter-ExtraBold.eot -------------------------------------------------------------------------------- /assets/fonts/Inter-ExtraBold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/fonts/Inter-ExtraBold.svg -------------------------------------------------------------------------------- /assets/fonts/Inter-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/fonts/Inter-ExtraBold.ttf -------------------------------------------------------------------------------- /assets/fonts/Inter-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/fonts/Inter-ExtraBold.woff -------------------------------------------------------------------------------- /assets/fonts/Inter-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/fonts/Inter-ExtraBold.woff2 -------------------------------------------------------------------------------- /assets/fonts/Inter-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/fonts/Inter-Regular.eot -------------------------------------------------------------------------------- /assets/fonts/Inter-Regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/fonts/Inter-Regular.svg -------------------------------------------------------------------------------- /assets/fonts/Inter-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/fonts/Inter-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/fonts/Inter-Regular.woff -------------------------------------------------------------------------------- /assets/fonts/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/fonts/Inter-Regular.woff2 -------------------------------------------------------------------------------- /assets/images/brad-siefert-photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/brad-siefert-photo.jpg -------------------------------------------------------------------------------- /assets/images/confetti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/confetti.png -------------------------------------------------------------------------------- /assets/images/favicons/Automators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/Automators.png -------------------------------------------------------------------------------- /assets/images/favicons/Bradsiefert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/Bradsiefert.png -------------------------------------------------------------------------------- /assets/images/favicons/CultofMac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/CultofMac.png -------------------------------------------------------------------------------- /assets/images/favicons/Github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/Github.png -------------------------------------------------------------------------------- /assets/images/favicons/JordanMerrick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/JordanMerrick.png -------------------------------------------------------------------------------- /assets/images/favicons/MacSparky.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/MacSparky.jpg -------------------------------------------------------------------------------- /assets/images/favicons/Macrumors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/Macrumors.png -------------------------------------------------------------------------------- /assets/images/favicons/Macstories.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/Macstories.png -------------------------------------------------------------------------------- /assets/images/favicons/Medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/Medium.png -------------------------------------------------------------------------------- /assets/images/favicons/MikeBeasley.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/MikeBeasley.png -------------------------------------------------------------------------------- /assets/images/favicons/Reddit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/Reddit.png -------------------------------------------------------------------------------- /assets/images/favicons/RosemaryOrchard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/RosemaryOrchard.png -------------------------------------------------------------------------------- /assets/images/favicons/RoutineHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/RoutineHub.png -------------------------------------------------------------------------------- /assets/images/favicons/SCPL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/SCPL.png -------------------------------------------------------------------------------- /assets/images/favicons/ShareShortcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/ShareShortcuts.png -------------------------------------------------------------------------------- /assets/images/favicons/Sharecuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/Sharecuts.png -------------------------------------------------------------------------------- /assets/images/favicons/Shortcasts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/Shortcasts.png -------------------------------------------------------------------------------- /assets/images/favicons/ShortcutHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/ShortcutHub.png -------------------------------------------------------------------------------- /assets/images/favicons/Shortcutor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/Shortcutor.png -------------------------------------------------------------------------------- /assets/images/favicons/ShortcutsGallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/ShortcutsGallery.png -------------------------------------------------------------------------------- /assets/images/favicons/ShortcutsJS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/ShortcutsJS.png -------------------------------------------------------------------------------- /assets/images/favicons/ShortcutsWeb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/ShortcutsWeb.png -------------------------------------------------------------------------------- /assets/images/favicons/ShortcutsbyApple256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/ShortcutsbyApple256.png -------------------------------------------------------------------------------- /assets/images/favicons/Showcuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/Showcuts.png -------------------------------------------------------------------------------- /assets/images/favicons/SiriCuts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/SiriCuts.png -------------------------------------------------------------------------------- /assets/images/favicons/SixColors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/SixColors.png -------------------------------------------------------------------------------- /assets/images/favicons/TheSweetSetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/TheSweetSetup.png -------------------------------------------------------------------------------- /assets/images/favicons/TheUntitledSite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/TheUntitledSite.png -------------------------------------------------------------------------------- /assets/images/favicons/TheVerge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/TheVerge.png -------------------------------------------------------------------------------- /assets/images/favicons/Wikipedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/Wikipedia.png -------------------------------------------------------------------------------- /assets/images/favicons/discord.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/discord.jpg -------------------------------------------------------------------------------- /assets/images/favicons/iosshortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/iosshortcut.png -------------------------------------------------------------------------------- /assets/images/favicons/relayfm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/relayfm.png -------------------------------------------------------------------------------- /assets/images/favicons/siri-shortcuts.de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/siri-shortcuts.de.png -------------------------------------------------------------------------------- /assets/images/favicons/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/slack.png -------------------------------------------------------------------------------- /assets/images/favicons/takecontrolbooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/takecontrolbooks.png -------------------------------------------------------------------------------- /assets/images/favicons/techcrunch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/techcrunch.png -------------------------------------------------------------------------------- /assets/images/favicons/telegram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/telegram.png -------------------------------------------------------------------------------- /assets/images/favicons/twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/twitter.jpg -------------------------------------------------------------------------------- /assets/images/favicons/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/favicons/workflow.png -------------------------------------------------------------------------------- /assets/images/link-default-avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/link-default-avatar.png -------------------------------------------------------------------------------- /assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/logo.svg -------------------------------------------------------------------------------- /assets/images/max-tweet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/images/max-tweet.jpg -------------------------------------------------------------------------------- /assets/scss/fontfaces.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/scss/fontfaces.css -------------------------------------------------------------------------------- /assets/scss/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/scss/styles.scss -------------------------------------------------------------------------------- /assets/scss/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/assets/scss/variables.scss -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /public/sharingtile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/public/sharingtile.jpg -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../.nuxt/tsconfig.server.json" 3 | } 4 | -------------------------------------------------------------------------------- /src/.temp/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/.temp/config.js -------------------------------------------------------------------------------- /src/.temp/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/.temp/constants.js -------------------------------------------------------------------------------- /src/.temp/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/.temp/icons.js -------------------------------------------------------------------------------- /src/.temp/now.js: -------------------------------------------------------------------------------- 1 | export default 1636137647115 -------------------------------------------------------------------------------- /src/.temp/plugins-client.js: -------------------------------------------------------------------------------- 1 | 2 | export default [ 3 | ] 4 | -------------------------------------------------------------------------------- /src/.temp/plugins-server.js: -------------------------------------------------------------------------------- 1 | 2 | export default [ 3 | ] 4 | -------------------------------------------------------------------------------- /src/.temp/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/.temp/routes.js -------------------------------------------------------------------------------- /src/components/Collections.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/components/Collections.vue -------------------------------------------------------------------------------- /src/components/HeroBody.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/components/HeroBody.vue -------------------------------------------------------------------------------- /src/components/Link.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/components/Link.vue -------------------------------------------------------------------------------- /src/components/LinkApp.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/components/LinkApp.vue -------------------------------------------------------------------------------- /src/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/favicon.png -------------------------------------------------------------------------------- /src/layouts/Default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/layouts/Default.vue -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/main.js -------------------------------------------------------------------------------- /src/pages/404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/pages/404.vue -------------------------------------------------------------------------------- /src/pages/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/pages/About.vue -------------------------------------------------------------------------------- /src/pages/Communities.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/pages/Communities.vue -------------------------------------------------------------------------------- /src/pages/Enthusiastcreators.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/pages/Enthusiastcreators.vue -------------------------------------------------------------------------------- /src/pages/Extensionapps.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/pages/Extensionapps.vue -------------------------------------------------------------------------------- /src/pages/Gallerysites.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/pages/Gallerysites.vue -------------------------------------------------------------------------------- /src/pages/History.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/pages/History.vue -------------------------------------------------------------------------------- /src/pages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/pages/Index.vue -------------------------------------------------------------------------------- /src/pages/International.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/pages/International.vue -------------------------------------------------------------------------------- /src/pages/Newsandblogs.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/pages/Newsandblogs.vue -------------------------------------------------------------------------------- /src/pages/Podcasts.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/pages/Podcasts.vue -------------------------------------------------------------------------------- /src/pages/Powertools.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/pages/Powertools.vue -------------------------------------------------------------------------------- /src/pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/pages/README.md -------------------------------------------------------------------------------- /src/pages/Submitalink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/pages/Submitalink.vue -------------------------------------------------------------------------------- /src/pages/Success.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/pages/Success.vue -------------------------------------------------------------------------------- /src/pages/Training.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/src/pages/Training.vue -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bradsiefert/shortcuts.directory/HEAD/tsconfig.json --------------------------------------------------------------------------------