badgen.net/components/footer.tsx

46 wiersze
1.6 KiB
TypeScript

2023-01-04 01:31:10 +00:00
/* eslint-disable @next/next/no-img-element */
2018-10-19 09:37:25 +00:00
import Link from 'next/link'
2022-12-31 08:23:34 +00:00
import Image from 'next/image'
2018-10-19 09:37:25 +00:00
2019-08-30 03:22:22 +00:00
export default function Footer () {
return (
2018-10-19 09:37:25 +00:00
<footer>
<div className='footer-content'>
<div>
2022-12-31 08:23:34 +00:00
<h3>
<img alt='badgen logo' src='/statics/badgen-logo-w.svg' />
2022-12-31 08:23:34 +00:00
Badgen Service
</h3>
2018-10-19 09:37:25 +00:00
<div className='sitemap'>
2022-12-31 08:23:34 +00:00
<Link href='https://badgen.net'>Classic</Link>
2018-10-25 07:38:22 +00:00
<em>/</em>
2022-12-31 08:23:34 +00:00
<Link href='https://flat.badgen.net'>Flat</Link>
2018-10-19 09:37:25 +00:00
<em>/</em>
2022-12-31 08:23:34 +00:00
<Link href='https://github.com/badgen/badgen.net'>GitHub</Link>
2019-06-02 02:48:42 +00:00
<em>/</em>
2022-12-31 08:23:34 +00:00
<Link href='https://twitter.com/badgen_net'>Twitter</Link>
2019-08-24 09:08:32 +00:00
<em>/</em>
2022-12-31 08:23:34 +00:00
<Link href='https://opencollective.com/badgen'>OpenCollective</Link>
2018-10-25 07:38:22 +00:00
<br />
2018-10-19 09:37:25 +00:00
</div>
</div>
<div className='bottom'>
<div>
2019-08-24 09:08:32 +00:00
Built with by <a href='https://github.com/amio'>Amio</a> and
awesome <a href='https://github.com/badgen/badgen.net/graphs/contributors'>contributors</a>.
2020-04-26 13:29:13 +00:00
Powered by <a href='https://vercel.com'>Vercel</a>.
2018-10-19 09:37:25 +00:00
</div>
<div className='links'>
2022-12-31 08:23:34 +00:00
<a title='badgen twitter link' href='https://twitter.com/badgen_net'>
<img alt='badgen twitter link' src='https://simpleicons.vercel.app/x/fff' width='30' height='30' />
2018-10-19 09:37:25 +00:00
</a>
2022-12-31 08:23:34 +00:00
<a href='https://github.com/badgen/badgen.net'>
2023-01-04 01:31:10 +00:00
<img alt='badgen github link' src='https://simpleicons.vercel.app/github/fff' width='30' height='30' />
2018-10-22 08:40:39 +00:00
</a>
2018-10-19 09:37:25 +00:00
</div>
</div>
</div>
</footer>
2019-08-30 03:22:22 +00:00
)}