├── .gitignore ├── README.md ├── design ├── active-states.jpg ├── desktop-design.jpg ├── desktop-preview.jpg ├── mobile-design.jpg └── mobile-menu.jpg ├── images ├── bg-pattern-circles.svg ├── bg-pattern-intro-desktop.svg ├── bg-pattern-intro-mobile.svg ├── favicon-32x32.png ├── icon-arrow-dark.svg ├── icon-arrow-light.svg ├── icon-close.svg ├── icon-hamburger.svg ├── illustration-editor-desktop.svg ├── illustration-editor-mobile.svg ├── illustration-laptop-desktop.svg ├── illustration-laptop-mobile.svg ├── illustration-phones.svg └── logo.svg ├── index.html ├── script.js ├── style-guide.md └── style.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/README.md -------------------------------------------------------------------------------- /design/active-states.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/design/active-states.jpg -------------------------------------------------------------------------------- /design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/design/desktop-design.jpg -------------------------------------------------------------------------------- /design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/design/desktop-preview.jpg -------------------------------------------------------------------------------- /design/mobile-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/design/mobile-design.jpg -------------------------------------------------------------------------------- /design/mobile-menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/design/mobile-menu.jpg -------------------------------------------------------------------------------- /images/bg-pattern-circles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/images/bg-pattern-circles.svg -------------------------------------------------------------------------------- /images/bg-pattern-intro-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/images/bg-pattern-intro-desktop.svg -------------------------------------------------------------------------------- /images/bg-pattern-intro-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/images/bg-pattern-intro-mobile.svg -------------------------------------------------------------------------------- /images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/images/favicon-32x32.png -------------------------------------------------------------------------------- /images/icon-arrow-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/images/icon-arrow-dark.svg -------------------------------------------------------------------------------- /images/icon-arrow-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/images/icon-arrow-light.svg -------------------------------------------------------------------------------- /images/icon-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/images/icon-close.svg -------------------------------------------------------------------------------- /images/icon-hamburger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/images/icon-hamburger.svg -------------------------------------------------------------------------------- /images/illustration-editor-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/images/illustration-editor-desktop.svg -------------------------------------------------------------------------------- /images/illustration-editor-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/images/illustration-editor-mobile.svg -------------------------------------------------------------------------------- /images/illustration-laptop-desktop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/images/illustration-laptop-desktop.svg -------------------------------------------------------------------------------- /images/illustration-laptop-mobile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/images/illustration-laptop-mobile.svg -------------------------------------------------------------------------------- /images/illustration-phones.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/images/illustration-phones.svg -------------------------------------------------------------------------------- /images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/images/logo.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/index.html -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/script.js -------------------------------------------------------------------------------- /style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/style-guide.md -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnMwendwa/blogr-landing-page/HEAD/style.css --------------------------------------------------------------------------------