Scaffold basic workshop frontend.

This commit is contained in:
2023-12-04 14:02:37 +13:00
parent f7c9392f1c
commit 89ea336647
80 changed files with 27173 additions and 0 deletions

13
components/Quote.js Normal file
View File

@ -0,0 +1,13 @@
import PropTypes from 'prop-types'
const Quote = ({ quote }) => (
<blockquote className="relative p-4 text-xl italic border-l-4 bg-neutral-100 text-neutral-600 border-neutral-500 quote">
<p className="mb-4">{ quote }</p>
</blockquote>
)
Quote.propTypes = {
quote: PropTypes.string,
}
export default Quote