added a form element and a map

This commit is contained in:
Quentin Roussel
2024-03-23 18:24:18 +01:00
parent 46c6ce7af2
commit b274bd4ad5
10 changed files with 108 additions and 19 deletions

View File

@@ -1,10 +1,9 @@
import LoginForm from "@/components/team/loginForm";
export default function Home() {
return (
<div>
<h1>La Traque</h1>
<p>
La Traque est un jeu de rôle en ligne massivement multijoueur (MMORPG) qui se déroule dans un univers médiéval fantastique.
</p>
<LoginForm />
</div>
);
}

View File

@@ -0,0 +1,15 @@
import dynamic from 'next/dynamic';
import React from 'react'
//Load the map without SSR
const LiveMap = dynamic(() => import('@/components/team/map'), {
ssr: false
});
export default function Track() {
return (
<main>
<LiveMap className="h-full"/>
</main>
)
}