diff --git a/.gitignore b/.gitignore index 5ef6a52..7412597 100644 --- a/.gitignore +++ b/.gitignore @@ -39,3 +39,5 @@ yarn-error.log* # typescript *.tsbuildinfo next-env.d.ts +components/Map.js +pages/index.js diff --git a/components/Map.js b/app/components/Map.js similarity index 100% rename from components/Map.js rename to app/components/Map.js diff --git a/app/globals.css b/app/globals.css index a2dc41e..e4e61bd 100644 --- a/app/globals.css +++ b/app/globals.css @@ -1,8 +1,8 @@ @import "tailwindcss"; :root { - --background: #ffffff; - --foreground: #171717; + --background: #29531d; + --foreground: #a07676; } @theme inline { @@ -14,8 +14,8 @@ @media (prefers-color-scheme: dark) { :root { - --background: #0a0a0a; - --foreground: #ededed; + --background: #29531d; + --foreground: #a07676; } } @@ -24,3 +24,4 @@ body { color: var(--foreground); font-family: Arial, Helvetica, sans-serif; } + diff --git a/app/page.tsx b/app/page.tsx index 88f0cc9..925cf1d 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -2,8 +2,10 @@ import Image from "next/image"; export default function Home() { return ( -