mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01:00
19 lines
337 B
JavaScript
19 lines
337 B
JavaScript
import React from 'react';
|
|
import Layout from 'components/layout';
|
|
import Link from 'next/link';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<Layout>
|
|
Hello.
|
|
<br />
|
|
<Link href="/?q=abc">
|
|
<a>abc</a>
|
|
</Link>
|
|
<br />
|
|
<Link href="/?q=123">
|
|
<a>123</a>
|
|
</Link>
|
|
</Layout>
|
|
);
|
|
}
|