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

View File

@@ -1,4 +1,4 @@
import Link from 'next/link'
import Link from "next/link";
export default function CustomLink({ as, href, ...otherProps }) {
return (
@@ -12,5 +12,5 @@ export default function CustomLink({ as, href, ...otherProps }) {
}
`}</style>
</>
)
);
}

View File

@@ -41,9 +41,9 @@ export default function Layout({ children }) {
}
code {
font-family: 'Menlo';
font-family: "Menlo";
}
`}</style>
</>
)
);
}

View File

@@ -1,4 +1,4 @@
export default function TestComponent({ name = 'world' }) {
export default function TestComponent({ name = "world" }) {
return (
<>
<div>Hello, {name}!</div>
@@ -12,5 +12,5 @@ export default function TestComponent({ name = 'world' }) {
}
`}</style>
</>
)
);
}