├── static ├── ads.txt ├── robots.txt ├── favicon.png ├── coffeefont.ttf ├── logo-192.png ├── logo-512.png ├── Screenshot1.png ├── Screenshot2.png ├── Screenshot3.png ├── social │ ├── test.png │ └── test.svg ├── icons │ ├── mstile-144x144.png │ ├── mstile-150x150.png │ ├── mstile-310x150.png │ ├── mstile-310x310.png │ └── mstile-70x70.png ├── .well-known │ └── brave-rewards-verification.txt ├── manifest.json ├── pickr-1725151604.min.css └── global-1725151604.min.css ├── src ├── client.js ├── routes │ ├── stores.js │ ├── _layout.svelte │ ├── [slug].json.js │ ├── _error.svelte │ ├── index.json.js │ ├── privacy-policy.svelte │ ├── changelog.svelte │ ├── api.svelte │ ├── _constants.js │ ├── _lang.js │ └── downloads.svelte ├── server.js ├── components │ ├── ShinyButton.svelte │ ├── StickyFooter.svelte │ ├── Logo.svelte │ ├── LangSelect.svelte │ ├── Footer.svelte │ ├── Nav.svelte │ └── SimpleAutocomplete.svelte ├── service-worker.js ├── template.html └── css │ ├── pickr.css │ └── global.css ├── .gitignore ├── LICENSE.md ├── README.md ├── rollup.config.js ├── package.json └── nodejs └── htmlGenerator.mjs /static/ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-2799761399763923, DIRECT, f08c47fec0942fa0 -------------------------------------------------------------------------------- /static/robots.txt: -------------------------------------------------------------------------------- 1 | Sitemap: https://pattern.monster/sitemap.xml 2 | User-agent: * 3 | Crawl-Delay: 20 -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchspider2002/svelte-svg-patterns/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/coffeefont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchspider2002/svelte-svg-patterns/HEAD/static/coffeefont.ttf -------------------------------------------------------------------------------- /static/logo-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchspider2002/svelte-svg-patterns/HEAD/static/logo-192.png -------------------------------------------------------------------------------- /static/logo-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchspider2002/svelte-svg-patterns/HEAD/static/logo-512.png -------------------------------------------------------------------------------- /static/Screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchspider2002/svelte-svg-patterns/HEAD/static/Screenshot1.png -------------------------------------------------------------------------------- /static/Screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchspider2002/svelte-svg-patterns/HEAD/static/Screenshot2.png -------------------------------------------------------------------------------- /static/Screenshot3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchspider2002/svelte-svg-patterns/HEAD/static/Screenshot3.png -------------------------------------------------------------------------------- /static/social/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchspider2002/svelte-svg-patterns/HEAD/static/social/test.png -------------------------------------------------------------------------------- /src/client.js: -------------------------------------------------------------------------------- 1 | import * as sapper from '@sapper/app'; 2 | 3 | sapper.start({ 4 | target: document.querySelector('#sapper') 5 | }); -------------------------------------------------------------------------------- /static/icons/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchspider2002/svelte-svg-patterns/HEAD/static/icons/mstile-144x144.png -------------------------------------------------------------------------------- /static/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchspider2002/svelte-svg-patterns/HEAD/static/icons/mstile-150x150.png -------------------------------------------------------------------------------- /static/icons/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchspider2002/svelte-svg-patterns/HEAD/static/icons/mstile-310x150.png -------------------------------------------------------------------------------- /static/icons/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchspider2002/svelte-svg-patterns/HEAD/static/icons/mstile-310x310.png -------------------------------------------------------------------------------- /static/icons/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchspider2002/svelte-svg-patterns/HEAD/static/icons/mstile-70x70.png -------------------------------------------------------------------------------- /src/routes/stores.js: -------------------------------------------------------------------------------- 1 | import { writable } from "svelte/store"; 2 | 3 | export const themeStore = writable("light"); 4 | export const langStore = writable("en"); -------------------------------------------------------------------------------- /static/.well-known/brave-rewards-verification.txt: -------------------------------------------------------------------------------- 1 | This is a Brave Rewards publisher verification file. 2 | 3 | Domain: pattern.monster 4 | Token: 7fe51d23d94af1ce16b38b6c624cd36bb8f5b9adce319cd70e4c8f26b365aeb1 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /node_modules/ 3 | /src/node_modules/@sapper/ 4 | yarn-error.log 5 | /cypress/screenshots/ 6 | /__sapper__/ 7 | Samples.md 8 | createScreenshot.js 9 | create* 10 | airtable.js 11 | /static/archive 12 | /static/social 13 | /static/screenshots 14 | redbubble 15 | SVGtoPNG.js 16 | test-worker/ 17 | *.pattern.monster/ 18 | src/css/*-* 19 | *.env -------------------------------------------------------------------------------- /src/routes/_layout.svelte: -------------------------------------------------------------------------------- 1 | 7 | 8 | 9 |