diff --git a/README.md b/README.md index fb076d6..844dee7 100644 --- a/README.md +++ b/README.md @@ -32,14 +32,13 @@ At the time of badgen.now.sh's reveal, it had only four live badges as demonstra ## Anatomy -- Written in latest, vanilla JavaScript => no build process +- Written in TypeScript => better develop experience - Using [badgen](https://github.com/amio/badgen) library to generate svg on the fly => fast & stateless - Hosted on [Now][now-href], serving behind Now CDN => faster & reliable - Cache less than 4 minutes => fresh & hot -- Three endpoints in one server +- Two styles: - https://badgen.net - classic style badges - https://flat.badgen.net - flat & square style badges - - https://api.badgen.net - json “style” badges data (live badges only) - Two badge types - static badge - URL defined badge (subject, status, color) - live badge - show live status from 3rd party services diff --git a/components/footer.js b/components/footer.js index 0cd96bd..fc1a3f0 100644 --- a/components/footer.js +++ b/components/footer.js @@ -10,8 +10,6 @@ export default () => ( / Flat / - API - / Gallery / Status @@ -20,7 +18,7 @@ export default () => (
- Built with ♥ by Amio and awesome contributors. Hosted on Now Cloud. License under ISC. + Built with ♥ by Amio and awesome contributors. Hosted on Now. License under ISC.
diff --git a/components/home-header.js b/components/home-header.js index a0943b2..1108d6f 100644 --- a/components/home-header.js +++ b/components/home-header.js @@ -6,6 +6,5 @@ export default () => <>

classic flat - api

diff --git a/pages/_app.js b/pages/_app.js index c3f1017..0fd35f6 100644 --- a/pages/_app.js +++ b/pages/_app.js @@ -2,7 +2,6 @@ import React from 'react' import App, { Container } from 'next/app' import Head from 'next/head' import DocsLayout from '../components/docs-layout.js' -import Footer from '../components/footer.js' export default class MyApp extends App { render () {