import React from 'react'

const Home = () => {
  return (
    <>
      <header className="pv5 bg-gold black-80">
        <h1 className="mt0 mb1 tc">Create New App</h1>
        <div className="tc ttc">by the Qodesmith</div>
      </header>
      <div className="pt4 pb1 tc">Go save the world with JavaScript</div>
      <div className="tc">
        and edit{' '}
        <code>
          src/components/<span className="b">Home.jsx</span>
        </code>
        !
      </div>
    </>
  )
}

export default Home
