15 lines
320 B
TypeScript
15 lines
320 B
TypeScript
|
import Image from 'next/image'
|
||
|
import Link from 'next/link'
|
||
|
|
||
|
export default function Home() {
|
||
|
return (
|
||
|
<main>
|
||
|
<h1 className="url">
|
||
|
<Link href="https://github.com/thamognya/internet-ml">
|
||
|
testing
|
||
|
</Link>
|
||
|
</h1>
|
||
|
</main>
|
||
|
)
|
||
|
}
|