Initial commit from Create Next App

This commit is contained in:
2022-10-12 22:06:54 +02:00
commit 7f593c65e4
12 changed files with 2138 additions and 0 deletions

16
components/CustomLink.js Normal file
View File

@@ -0,0 +1,16 @@
import Link from 'next/link'
export default function CustomLink({ as, href, ...otherProps }) {
return (
<>
<Link as={as} href={href}>
<a {...otherProps} />
</Link>
<style jsx>{`
a {
color: tomato;
}
`}</style>
</>
)
}