Add base setup

This commit is contained in:
2022-10-12 22:16:59 +02:00
parent 7f593c65e4
commit c449ec250a
9 changed files with 118 additions and 49 deletions

16
components/CustomLink.tsx 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>
</>
);
}