mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 01:35:17 +01:00
18 lines
327 B
JavaScript
18 lines
327 B
JavaScript
import React from 'react';
|
|
import Link from 'next/link';
|
|
import Layout from 'components/Layout';
|
|
import Login from 'components/Login';
|
|
|
|
export default function Home() {
|
|
return (
|
|
<Layout>
|
|
<Login />
|
|
<p>
|
|
<Link href="/test">
|
|
<a>Test page 🡒</a>
|
|
</Link>
|
|
</p>
|
|
</Layout>
|
|
);
|
|
}
|