fantus/pages/about.tsx
cupcakearmy e5924868df pages
2020-01-12 18:34:27 +01:00

29 lines
894 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import React from 'react'
const Home = () => {
return <div className='center color'>
<h1 className='ma0'>about</h1>
<div className='text'>
<p>
yet another producer. because we don't already have enough of them.
<br />
<br />
📍based on planet earth
<br />
</p>
<p>
<a target='_blank' href='https://www.mixcloud.com/fantus/'>MixCloud</a>
<br />
<a target='_blank' href='https://soundcloud.com/fantus_music'>SoundCloud</a>
<br />
</p>
<br />
<p>
website made by 🤖 with . <a target='_blank' href="https://github.com/cupcakearmy/fantus">source code available here</a>
</p>
</div>
</div>
}
export default Home