├── .browserslistrc ├── .eslintrc.js ├── .gitignore ├── LICENSE.md ├── README.md ├── babel.config.js ├── gridsome.config.js ├── gridsome.server.js ├── package.json ├── src ├── assets │ ├── fonts │ │ ├── Inter-Black.woff │ │ ├── Inter-Black.woff2 │ │ ├── Inter-BlackItalic.woff │ │ ├── Inter-BlackItalic.woff2 │ │ ├── Inter-Bold.woff │ │ ├── Inter-Bold.woff2 │ │ ├── Inter-BoldItalic.woff │ │ ├── Inter-BoldItalic.woff2 │ │ ├── Inter-ExtraBold.woff │ │ ├── Inter-ExtraBold.woff2 │ │ ├── Inter-ExtraBoldItalic.woff │ │ ├── Inter-ExtraBoldItalic.woff2 │ │ ├── Inter-ExtraLight-BETA.woff │ │ ├── Inter-ExtraLight-BETA.woff2 │ │ ├── Inter-ExtraLightItalic-BETA.woff │ │ ├── Inter-ExtraLightItalic-BETA.woff2 │ │ ├── Inter-Italic.woff │ │ ├── Inter-Italic.woff2 │ │ ├── Inter-Light-BETA.woff │ │ ├── Inter-Light-BETA.woff2 │ │ ├── Inter-LightItalic-BETA.woff │ │ ├── Inter-LightItalic-BETA.woff2 │ │ ├── Inter-Medium.woff │ │ ├── Inter-Medium.woff2 │ │ ├── Inter-MediumItalic.woff │ │ ├── Inter-MediumItalic.woff2 │ │ ├── Inter-Regular.woff │ │ ├── Inter-Regular.woff2 │ │ ├── Inter-SemiBold.woff │ │ ├── Inter-SemiBold.woff2 │ │ ├── Inter-SemiBoldItalic.woff │ │ ├── Inter-SemiBoldItalic.woff2 │ │ ├── Inter-Thin-BETA.woff │ │ ├── Inter-Thin-BETA.woff2 │ │ ├── Inter-ThinItalic-BETA.woff │ │ ├── Inter-ThinItalic-BETA.woff2 │ │ └── Inter-italic.var.woff2 │ ├── icons │ │ ├── apple.svg │ │ ├── arrow-down.svg │ │ ├── dark-mode.svg │ │ ├── fast.svg │ │ ├── frequently-used.svg │ │ ├── glyphs.svg │ │ ├── mac.svg │ │ ├── offline.svg │ │ ├── setapp.svg │ │ └── windows.svg │ ├── images │ │ ├── avatars │ │ │ ├── allanwhite.jpg │ │ │ ├── fallback.png │ │ │ ├── gregorweichbrodt.jpg │ │ │ ├── hckmstrrahul.jpg │ │ │ ├── juliusgehrig.jpg │ │ │ ├── justinschueler.jpg │ │ │ ├── leanderlenzing.png │ │ │ ├── mds.jpg │ │ │ ├── rasmusandersson.jpg │ │ │ ├── stasmoor.png │ │ │ ├── sven.jpg │ │ │ └── travistopham.jpg │ │ ├── banner.png │ │ ├── favicon.png │ │ ├── feature.png │ │ ├── large-feature.png │ │ ├── logo.png │ │ └── ratings.svg │ └── videos │ │ ├── banner.mp4 │ │ ├── emojis.mp4 │ │ ├── lookalikes.mp4 │ │ ├── menubar.mp4 │ │ ├── shortcut.mp4 │ │ └── shortcuts.mp4 ├── components │ ├── Accordion │ │ ├── index.vue │ │ └── style.scss │ ├── AppFooter │ │ ├── index.vue │ │ └── style.scss │ ├── AppSection │ │ ├── index.vue │ │ └── style.scss │ ├── Btn │ │ ├── index.vue │ │ └── style.scss │ ├── BuyButton │ │ ├── index.vue │ │ └── style.scss │ ├── DemoVideo │ │ ├── index.vue │ │ └── style.scss │ ├── DownloadBtn │ │ ├── index.vue │ │ └── style.scss │ ├── FeatureItem │ │ ├── index.vue │ │ └── style.scss │ ├── FloatingGlyphs │ │ ├── index.vue │ │ ├── sprite.png │ │ └── style.scss │ ├── Grid │ │ ├── Container │ │ │ └── index.js │ │ ├── Item │ │ │ └── index.js │ │ └── index.js │ ├── Icon │ │ ├── index.vue │ │ └── style.scss │ ├── Navigation │ │ ├── index.vue │ │ └── style.scss │ ├── NewsletterForm │ │ ├── index.vue │ │ └── style.scss │ ├── ProductBanner │ │ ├── index.vue │ │ └── style.scss │ ├── ProductHuntBar │ │ ├── index.vue │ │ └── style.scss │ ├── README.md │ ├── Shortcut │ │ ├── index.vue │ │ └── style.scss │ ├── SlideUpDown │ │ └── index.vue │ ├── Slider │ │ ├── index.vue │ │ └── style.scss │ ├── SmallFeatureItem │ │ ├── index.vue │ │ └── style.scss │ ├── SmallKey │ │ ├── index.vue │ │ └── style.scss │ ├── Split │ │ ├── index.vue │ │ └── style.scss │ └── Testimonials │ │ ├── index.vue │ │ └── style.scss ├── index.html ├── layouts │ ├── Default.vue │ ├── README.md │ ├── app.scss │ ├── base.scss │ └── fonts.scss ├── main.js ├── pages │ ├── Impressum.vue │ ├── Index.vue │ ├── Privacy.vue │ └── README.md ├── templates │ └── README.md └── variables.scss ├── static ├── README.md ├── _redirects ├── glyphfinder-press-kit.zip ├── opengraph.png ├── screenshot.png └── simple.html └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/babel.config.js -------------------------------------------------------------------------------- /gridsome.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/gridsome.config.js -------------------------------------------------------------------------------- /gridsome.server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/gridsome.server.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/fonts/Inter-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-Black.woff -------------------------------------------------------------------------------- /src/assets/fonts/Inter-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-Black.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-BlackItalic.woff -------------------------------------------------------------------------------- /src/assets/fonts/Inter-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-BlackItalic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-Bold.woff -------------------------------------------------------------------------------- /src/assets/fonts/Inter-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-Bold.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-BoldItalic.woff -------------------------------------------------------------------------------- /src/assets/fonts/Inter-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-BoldItalic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-ExtraBold.woff -------------------------------------------------------------------------------- /src/assets/fonts/Inter-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-ExtraBold.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter-ExtraBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-ExtraBoldItalic.woff -------------------------------------------------------------------------------- /src/assets/fonts/Inter-ExtraBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-ExtraBoldItalic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter-ExtraLight-BETA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-ExtraLight-BETA.woff -------------------------------------------------------------------------------- /src/assets/fonts/Inter-ExtraLight-BETA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-ExtraLight-BETA.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter-ExtraLightItalic-BETA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-ExtraLightItalic-BETA.woff -------------------------------------------------------------------------------- /src/assets/fonts/Inter-ExtraLightItalic-BETA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-ExtraLightItalic-BETA.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-Italic.woff -------------------------------------------------------------------------------- /src/assets/fonts/Inter-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-Italic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter-Light-BETA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-Light-BETA.woff -------------------------------------------------------------------------------- /src/assets/fonts/Inter-Light-BETA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-Light-BETA.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter-LightItalic-BETA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-LightItalic-BETA.woff -------------------------------------------------------------------------------- /src/assets/fonts/Inter-LightItalic-BETA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-LightItalic-BETA.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-Medium.woff -------------------------------------------------------------------------------- /src/assets/fonts/Inter-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-Medium.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-MediumItalic.woff -------------------------------------------------------------------------------- /src/assets/fonts/Inter-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-MediumItalic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-Regular.woff -------------------------------------------------------------------------------- /src/assets/fonts/Inter-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-Regular.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-SemiBold.woff -------------------------------------------------------------------------------- /src/assets/fonts/Inter-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-SemiBold.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter-SemiBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-SemiBoldItalic.woff -------------------------------------------------------------------------------- /src/assets/fonts/Inter-SemiBoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-SemiBoldItalic.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter-Thin-BETA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-Thin-BETA.woff -------------------------------------------------------------------------------- /src/assets/fonts/Inter-Thin-BETA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-Thin-BETA.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter-ThinItalic-BETA.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-ThinItalic-BETA.woff -------------------------------------------------------------------------------- /src/assets/fonts/Inter-ThinItalic-BETA.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-ThinItalic-BETA.woff2 -------------------------------------------------------------------------------- /src/assets/fonts/Inter-italic.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/fonts/Inter-italic.var.woff2 -------------------------------------------------------------------------------- /src/assets/icons/apple.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/icons/apple.svg -------------------------------------------------------------------------------- /src/assets/icons/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/icons/arrow-down.svg -------------------------------------------------------------------------------- /src/assets/icons/dark-mode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/icons/dark-mode.svg -------------------------------------------------------------------------------- /src/assets/icons/fast.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/icons/fast.svg -------------------------------------------------------------------------------- /src/assets/icons/frequently-used.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/icons/frequently-used.svg -------------------------------------------------------------------------------- /src/assets/icons/glyphs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/icons/glyphs.svg -------------------------------------------------------------------------------- /src/assets/icons/mac.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/icons/mac.svg -------------------------------------------------------------------------------- /src/assets/icons/offline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/icons/offline.svg -------------------------------------------------------------------------------- /src/assets/icons/setapp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/icons/setapp.svg -------------------------------------------------------------------------------- /src/assets/icons/windows.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/icons/windows.svg -------------------------------------------------------------------------------- /src/assets/images/avatars/allanwhite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/images/avatars/allanwhite.jpg -------------------------------------------------------------------------------- /src/assets/images/avatars/fallback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/images/avatars/fallback.png -------------------------------------------------------------------------------- /src/assets/images/avatars/gregorweichbrodt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/images/avatars/gregorweichbrodt.jpg -------------------------------------------------------------------------------- /src/assets/images/avatars/hckmstrrahul.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/images/avatars/hckmstrrahul.jpg -------------------------------------------------------------------------------- /src/assets/images/avatars/juliusgehrig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/images/avatars/juliusgehrig.jpg -------------------------------------------------------------------------------- /src/assets/images/avatars/justinschueler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/images/avatars/justinschueler.jpg -------------------------------------------------------------------------------- /src/assets/images/avatars/leanderlenzing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/images/avatars/leanderlenzing.png -------------------------------------------------------------------------------- /src/assets/images/avatars/mds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/images/avatars/mds.jpg -------------------------------------------------------------------------------- /src/assets/images/avatars/rasmusandersson.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/images/avatars/rasmusandersson.jpg -------------------------------------------------------------------------------- /src/assets/images/avatars/stasmoor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/images/avatars/stasmoor.png -------------------------------------------------------------------------------- /src/assets/images/avatars/sven.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/images/avatars/sven.jpg -------------------------------------------------------------------------------- /src/assets/images/avatars/travistopham.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/images/avatars/travistopham.jpg -------------------------------------------------------------------------------- /src/assets/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/images/banner.png -------------------------------------------------------------------------------- /src/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/images/favicon.png -------------------------------------------------------------------------------- /src/assets/images/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/images/feature.png -------------------------------------------------------------------------------- /src/assets/images/large-feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/images/large-feature.png -------------------------------------------------------------------------------- /src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/images/logo.png -------------------------------------------------------------------------------- /src/assets/images/ratings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/images/ratings.svg -------------------------------------------------------------------------------- /src/assets/videos/banner.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/videos/banner.mp4 -------------------------------------------------------------------------------- /src/assets/videos/emojis.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/videos/emojis.mp4 -------------------------------------------------------------------------------- /src/assets/videos/lookalikes.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/videos/lookalikes.mp4 -------------------------------------------------------------------------------- /src/assets/videos/menubar.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/videos/menubar.mp4 -------------------------------------------------------------------------------- /src/assets/videos/shortcut.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/videos/shortcut.mp4 -------------------------------------------------------------------------------- /src/assets/videos/shortcuts.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/assets/videos/shortcuts.mp4 -------------------------------------------------------------------------------- /src/components/Accordion/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/Accordion/index.vue -------------------------------------------------------------------------------- /src/components/Accordion/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/Accordion/style.scss -------------------------------------------------------------------------------- /src/components/AppFooter/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/AppFooter/index.vue -------------------------------------------------------------------------------- /src/components/AppFooter/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/AppFooter/style.scss -------------------------------------------------------------------------------- /src/components/AppSection/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/AppSection/index.vue -------------------------------------------------------------------------------- /src/components/AppSection/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/AppSection/style.scss -------------------------------------------------------------------------------- /src/components/Btn/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/Btn/index.vue -------------------------------------------------------------------------------- /src/components/Btn/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/Btn/style.scss -------------------------------------------------------------------------------- /src/components/BuyButton/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/BuyButton/index.vue -------------------------------------------------------------------------------- /src/components/BuyButton/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/BuyButton/style.scss -------------------------------------------------------------------------------- /src/components/DemoVideo/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/DemoVideo/index.vue -------------------------------------------------------------------------------- /src/components/DemoVideo/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/DemoVideo/style.scss -------------------------------------------------------------------------------- /src/components/DownloadBtn/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/DownloadBtn/index.vue -------------------------------------------------------------------------------- /src/components/DownloadBtn/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/DownloadBtn/style.scss -------------------------------------------------------------------------------- /src/components/FeatureItem/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/FeatureItem/index.vue -------------------------------------------------------------------------------- /src/components/FeatureItem/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/FeatureItem/style.scss -------------------------------------------------------------------------------- /src/components/FloatingGlyphs/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/FloatingGlyphs/index.vue -------------------------------------------------------------------------------- /src/components/FloatingGlyphs/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/FloatingGlyphs/sprite.png -------------------------------------------------------------------------------- /src/components/FloatingGlyphs/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/FloatingGlyphs/style.scss -------------------------------------------------------------------------------- /src/components/Grid/Container/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/Grid/Container/index.js -------------------------------------------------------------------------------- /src/components/Grid/Item/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/Grid/Item/index.js -------------------------------------------------------------------------------- /src/components/Grid/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/Grid/index.js -------------------------------------------------------------------------------- /src/components/Icon/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/Icon/index.vue -------------------------------------------------------------------------------- /src/components/Icon/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/Icon/style.scss -------------------------------------------------------------------------------- /src/components/Navigation/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/Navigation/index.vue -------------------------------------------------------------------------------- /src/components/Navigation/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/Navigation/style.scss -------------------------------------------------------------------------------- /src/components/NewsletterForm/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/NewsletterForm/index.vue -------------------------------------------------------------------------------- /src/components/NewsletterForm/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/NewsletterForm/style.scss -------------------------------------------------------------------------------- /src/components/ProductBanner/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/ProductBanner/index.vue -------------------------------------------------------------------------------- /src/components/ProductBanner/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/ProductBanner/style.scss -------------------------------------------------------------------------------- /src/components/ProductHuntBar/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/ProductHuntBar/index.vue -------------------------------------------------------------------------------- /src/components/ProductHuntBar/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/ProductHuntBar/style.scss -------------------------------------------------------------------------------- /src/components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/README.md -------------------------------------------------------------------------------- /src/components/Shortcut/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/Shortcut/index.vue -------------------------------------------------------------------------------- /src/components/Shortcut/style.scss: -------------------------------------------------------------------------------- 1 | .shortcut { 2 | white-space: nowrap; 3 | } -------------------------------------------------------------------------------- /src/components/SlideUpDown/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/SlideUpDown/index.vue -------------------------------------------------------------------------------- /src/components/Slider/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/Slider/index.vue -------------------------------------------------------------------------------- /src/components/Slider/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/Slider/style.scss -------------------------------------------------------------------------------- /src/components/SmallFeatureItem/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/SmallFeatureItem/index.vue -------------------------------------------------------------------------------- /src/components/SmallFeatureItem/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/SmallFeatureItem/style.scss -------------------------------------------------------------------------------- /src/components/SmallKey/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/SmallKey/index.vue -------------------------------------------------------------------------------- /src/components/SmallKey/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/SmallKey/style.scss -------------------------------------------------------------------------------- /src/components/Split/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/Split/index.vue -------------------------------------------------------------------------------- /src/components/Split/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/Split/style.scss -------------------------------------------------------------------------------- /src/components/Testimonials/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/Testimonials/index.vue -------------------------------------------------------------------------------- /src/components/Testimonials/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/components/Testimonials/style.scss -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/index.html -------------------------------------------------------------------------------- /src/layouts/Default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/layouts/Default.vue -------------------------------------------------------------------------------- /src/layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/layouts/README.md -------------------------------------------------------------------------------- /src/layouts/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/layouts/app.scss -------------------------------------------------------------------------------- /src/layouts/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/layouts/base.scss -------------------------------------------------------------------------------- /src/layouts/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/layouts/fonts.scss -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/main.js -------------------------------------------------------------------------------- /src/pages/Impressum.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/pages/Impressum.vue -------------------------------------------------------------------------------- /src/pages/Index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/pages/Index.vue -------------------------------------------------------------------------------- /src/pages/Privacy.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/pages/Privacy.vue -------------------------------------------------------------------------------- /src/pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/pages/README.md -------------------------------------------------------------------------------- /src/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/templates/README.md -------------------------------------------------------------------------------- /src/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/src/variables.scss -------------------------------------------------------------------------------- /static/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/static/README.md -------------------------------------------------------------------------------- /static/_redirects: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/static/_redirects -------------------------------------------------------------------------------- /static/glyphfinder-press-kit.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/static/glyphfinder-press-kit.zip -------------------------------------------------------------------------------- /static/opengraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/static/opengraph.png -------------------------------------------------------------------------------- /static/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/static/screenshot.png -------------------------------------------------------------------------------- /static/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/static/simple.html -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ueberdosis/glyphfinder-landingpage/HEAD/yarn.lock --------------------------------------------------------------------------------