diff --git a/frontend-next/src/app/app/page.js b/frontend-next/src/app/app/page.js index e7805e9..d5c2687 100644 --- a/frontend-next/src/app/app/page.js +++ b/frontend-next/src/app/app/page.js @@ -1,6 +1,6 @@ "use client" import { useState, useEffect } from 'react' -import {Map} from "pigeon-maps" +import {Map, Marker} from "pigeon-maps" function WelcomeMessage() { //TODO: REALLY GROSS WAY TO GET COOKIES, NEED NEW WAY TO STORE USER DATA WITHOUT API CALLS. THIS PAGE HAS TO BE CLIENT SIDE DUE TO MAPS / GEOLOCATION @@ -46,11 +46,13 @@ function Geo() { }, []); if (!isLoading) { return ( - + + + ) } else { return ( -
Loading...
+ ) }