diff --git a/examples/with-tailwindcss/components/head.js b/examples/with-tailwindcss/components/head.js deleted file mode 100644 index f71df168..00000000 --- a/examples/with-tailwindcss/components/head.js +++ /dev/null @@ -1,37 +0,0 @@ -import NextHead from 'next/head' -import { string } from 'prop-types' - -const defaultDescription = '' -const defaultOGURL = '' -const defaultOGImage = '' - -const Head = (props) => ( - - - {props.title || ''} - - - - - - - - - - - - - - - - -) - -Head.propTypes = { - title: string, - description: string, - url: string, - ogImage: string -} - -export default Head diff --git a/examples/with-tailwindcss/components/nav.js b/examples/with-tailwindcss/components/nav.js index b9ad617c..e171967f 100644 --- a/examples/with-tailwindcss/components/nav.js +++ b/examples/with-tailwindcss/components/nav.js @@ -1,58 +1,29 @@ import Link from 'next/link' -const links = [ - { href: 'https://github.com/segmentio/create-next-app', label: 'Github' } -].map(link => { - link.key = `nav-link-${link.href}-${link.label}` - return link -}) -const Nav = () => ( -