├── .babelrc.js ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── env-config.js ├── next.config.js ├── out ├── .nojekyll ├── _next │ ├── f75c6dfd-a655-48cd-8c9e-3f8cf9a58a00 │ │ └── page │ │ │ ├── _app.js │ │ │ ├── _app.js.map │ │ │ ├── _document.js.map │ │ │ ├── _error.js │ │ │ ├── _error.js.map │ │ │ ├── about.js │ │ │ ├── components.js │ │ │ ├── components.js.map │ │ │ ├── design.js │ │ │ ├── index.js │ │ │ └── index.js.map │ └── static │ │ └── commons │ │ ├── main-726d7467b4653c1947ae.js │ │ ├── main-770bf6d4b1f63472599a.js │ │ ├── main.js │ │ ├── main.js.map │ │ ├── manifest.js │ │ └── manifest.js.map ├── about │ └── index.html ├── components │ └── index.html ├── design │ └── index.html ├── index.html └── static │ ├── favicon.ico │ ├── favicon.svg │ ├── images │ └── github.svg │ └── manifest.json ├── package.json ├── pages ├── _document.js ├── about.js ├── components.js ├── design.js └── index.js ├── src ├── _Theme.js ├── _Themes.js ├── components │ ├── Blockquote.js │ ├── Button.js │ ├── ButtonLarge.js │ ├── ButtonLink.js │ ├── ButtonOutline.js │ ├── ButtonSmall.js │ ├── Card.js │ ├── ChooseThemeModal.js │ ├── CodeBlock.js │ ├── CodeSpecimen.js │ ├── FontSelectBrowser.js │ ├── FontSelectWeb.js │ ├── Heading.js │ ├── InputSubmit.js │ ├── Link.js │ ├── Para.js │ ├── Section.js │ ├── SiteFooter.js │ ├── SiteHeader.js │ ├── SiteNav.js │ ├── SiteNavLink.js │ └── SiteNavLinkExternal.js ├── containers │ ├── App.js │ ├── Head.js │ └── Page.js ├── pages │ ├── About.js │ ├── Components.js │ ├── Design.js │ ├── DocsPage.js │ ├── DocsSection.js │ ├── Index.js │ ├── components │ │ ├── Buttons.js │ │ ├── Cards.js │ │ ├── Forms.js │ │ ├── Introduction.js │ │ └── Libraries.js │ └── design │ │ ├── Color.js │ │ ├── Forms.js │ │ ├── Introduction.js │ │ ├── Layout.js │ │ ├── Theme.js │ │ └── Typography.js ├── snippets.js └── updaters.js ├── static ├── favicon.ico ├── favicon.svg ├── images │ └── github.svg └── manifest.json └── test ├── test.js └── utils.js /.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/.babelrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .next 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/README.md -------------------------------------------------------------------------------- /env-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/env-config.js -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/next.config.js -------------------------------------------------------------------------------- /out/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /out/_next/f75c6dfd-a655-48cd-8c9e-3f8cf9a58a00/page/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/_next/f75c6dfd-a655-48cd-8c9e-3f8cf9a58a00/page/_app.js -------------------------------------------------------------------------------- /out/_next/f75c6dfd-a655-48cd-8c9e-3f8cf9a58a00/page/_app.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/_next/f75c6dfd-a655-48cd-8c9e-3f8cf9a58a00/page/_app.js.map -------------------------------------------------------------------------------- /out/_next/f75c6dfd-a655-48cd-8c9e-3f8cf9a58a00/page/_document.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/_next/f75c6dfd-a655-48cd-8c9e-3f8cf9a58a00/page/_document.js.map -------------------------------------------------------------------------------- /out/_next/f75c6dfd-a655-48cd-8c9e-3f8cf9a58a00/page/_error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/_next/f75c6dfd-a655-48cd-8c9e-3f8cf9a58a00/page/_error.js -------------------------------------------------------------------------------- /out/_next/f75c6dfd-a655-48cd-8c9e-3f8cf9a58a00/page/_error.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/_next/f75c6dfd-a655-48cd-8c9e-3f8cf9a58a00/page/_error.js.map -------------------------------------------------------------------------------- /out/_next/f75c6dfd-a655-48cd-8c9e-3f8cf9a58a00/page/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/_next/f75c6dfd-a655-48cd-8c9e-3f8cf9a58a00/page/about.js -------------------------------------------------------------------------------- /out/_next/f75c6dfd-a655-48cd-8c9e-3f8cf9a58a00/page/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/_next/f75c6dfd-a655-48cd-8c9e-3f8cf9a58a00/page/components.js -------------------------------------------------------------------------------- /out/_next/f75c6dfd-a655-48cd-8c9e-3f8cf9a58a00/page/components.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/_next/f75c6dfd-a655-48cd-8c9e-3f8cf9a58a00/page/components.js.map -------------------------------------------------------------------------------- /out/_next/f75c6dfd-a655-48cd-8c9e-3f8cf9a58a00/page/design.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/_next/f75c6dfd-a655-48cd-8c9e-3f8cf9a58a00/page/design.js -------------------------------------------------------------------------------- /out/_next/f75c6dfd-a655-48cd-8c9e-3f8cf9a58a00/page/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/_next/f75c6dfd-a655-48cd-8c9e-3f8cf9a58a00/page/index.js -------------------------------------------------------------------------------- /out/_next/f75c6dfd-a655-48cd-8c9e-3f8cf9a58a00/page/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/_next/f75c6dfd-a655-48cd-8c9e-3f8cf9a58a00/page/index.js.map -------------------------------------------------------------------------------- /out/_next/static/commons/main-726d7467b4653c1947ae.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/_next/static/commons/main-726d7467b4653c1947ae.js -------------------------------------------------------------------------------- /out/_next/static/commons/main-770bf6d4b1f63472599a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/_next/static/commons/main-770bf6d4b1f63472599a.js -------------------------------------------------------------------------------- /out/_next/static/commons/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/_next/static/commons/main.js -------------------------------------------------------------------------------- /out/_next/static/commons/main.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/_next/static/commons/main.js.map -------------------------------------------------------------------------------- /out/_next/static/commons/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/_next/static/commons/manifest.js -------------------------------------------------------------------------------- /out/_next/static/commons/manifest.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/_next/static/commons/manifest.js.map -------------------------------------------------------------------------------- /out/about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/about/index.html -------------------------------------------------------------------------------- /out/components/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/components/index.html -------------------------------------------------------------------------------- /out/design/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/design/index.html -------------------------------------------------------------------------------- /out/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/index.html -------------------------------------------------------------------------------- /out/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/static/favicon.ico -------------------------------------------------------------------------------- /out/static/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/static/favicon.svg -------------------------------------------------------------------------------- /out/static/images/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/static/images/github.svg -------------------------------------------------------------------------------- /out/static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/out/static/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/package.json -------------------------------------------------------------------------------- /pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/pages/_document.js -------------------------------------------------------------------------------- /pages/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/pages/about.js -------------------------------------------------------------------------------- /pages/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/pages/components.js -------------------------------------------------------------------------------- /pages/design.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/pages/design.js -------------------------------------------------------------------------------- /pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/pages/index.js -------------------------------------------------------------------------------- /src/_Theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/_Theme.js -------------------------------------------------------------------------------- /src/_Themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/_Themes.js -------------------------------------------------------------------------------- /src/components/Blockquote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/components/Blockquote.js -------------------------------------------------------------------------------- /src/components/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/components/Button.js -------------------------------------------------------------------------------- /src/components/ButtonLarge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/components/ButtonLarge.js -------------------------------------------------------------------------------- /src/components/ButtonLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/components/ButtonLink.js -------------------------------------------------------------------------------- /src/components/ButtonOutline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/components/ButtonOutline.js -------------------------------------------------------------------------------- /src/components/ButtonSmall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/components/ButtonSmall.js -------------------------------------------------------------------------------- /src/components/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/components/Card.js -------------------------------------------------------------------------------- /src/components/ChooseThemeModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/components/ChooseThemeModal.js -------------------------------------------------------------------------------- /src/components/CodeBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/components/CodeBlock.js -------------------------------------------------------------------------------- /src/components/CodeSpecimen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/components/CodeSpecimen.js -------------------------------------------------------------------------------- /src/components/FontSelectBrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/components/FontSelectBrowser.js -------------------------------------------------------------------------------- /src/components/FontSelectWeb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/components/FontSelectWeb.js -------------------------------------------------------------------------------- /src/components/Heading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/components/Heading.js -------------------------------------------------------------------------------- /src/components/InputSubmit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/components/InputSubmit.js -------------------------------------------------------------------------------- /src/components/Link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/components/Link.js -------------------------------------------------------------------------------- /src/components/Para.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/components/Para.js -------------------------------------------------------------------------------- /src/components/Section.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/components/Section.js -------------------------------------------------------------------------------- /src/components/SiteFooter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/components/SiteFooter.js -------------------------------------------------------------------------------- /src/components/SiteHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/components/SiteHeader.js -------------------------------------------------------------------------------- /src/components/SiteNav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/components/SiteNav.js -------------------------------------------------------------------------------- /src/components/SiteNavLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/components/SiteNavLink.js -------------------------------------------------------------------------------- /src/components/SiteNavLinkExternal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/components/SiteNavLinkExternal.js -------------------------------------------------------------------------------- /src/containers/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/containers/App.js -------------------------------------------------------------------------------- /src/containers/Head.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/containers/Head.js -------------------------------------------------------------------------------- /src/containers/Page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/containers/Page.js -------------------------------------------------------------------------------- /src/pages/About.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/pages/About.js -------------------------------------------------------------------------------- /src/pages/Components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/pages/Components.js -------------------------------------------------------------------------------- /src/pages/Design.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/pages/Design.js -------------------------------------------------------------------------------- /src/pages/DocsPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/pages/DocsPage.js -------------------------------------------------------------------------------- /src/pages/DocsSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/pages/DocsSection.js -------------------------------------------------------------------------------- /src/pages/Index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/pages/Index.js -------------------------------------------------------------------------------- /src/pages/components/Buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/pages/components/Buttons.js -------------------------------------------------------------------------------- /src/pages/components/Cards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/pages/components/Cards.js -------------------------------------------------------------------------------- /src/pages/components/Forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/pages/components/Forms.js -------------------------------------------------------------------------------- /src/pages/components/Introduction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/pages/components/Introduction.js -------------------------------------------------------------------------------- /src/pages/components/Libraries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/pages/components/Libraries.js -------------------------------------------------------------------------------- /src/pages/design/Color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/pages/design/Color.js -------------------------------------------------------------------------------- /src/pages/design/Forms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/pages/design/Forms.js -------------------------------------------------------------------------------- /src/pages/design/Introduction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/pages/design/Introduction.js -------------------------------------------------------------------------------- /src/pages/design/Layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/pages/design/Layout.js -------------------------------------------------------------------------------- /src/pages/design/Theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/pages/design/Theme.js -------------------------------------------------------------------------------- /src/pages/design/Typography.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/pages/design/Typography.js -------------------------------------------------------------------------------- /src/snippets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/snippets.js -------------------------------------------------------------------------------- /src/updaters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/src/updaters.js -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/static/favicon.svg -------------------------------------------------------------------------------- /static/images/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/static/images/github.svg -------------------------------------------------------------------------------- /static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/static/manifest.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/test/test.js -------------------------------------------------------------------------------- /test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnpolacek/styled-starter/HEAD/test/utils.js --------------------------------------------------------------------------------