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

@@ -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>
)
}