diff --git a/TODO b/TODO index 27cfbc0..71b4247 100644 --- a/TODO +++ b/TODO @@ -1,5 +1,7 @@ footer +need a 'return to top' arrow button on smaller screens + light/dark theme tests for tournois, testing the loading of map and table, then counting the markers diff --git a/app/about/page.tsx b/app/about/page.tsx index a3653e3..b0d1012 100644 --- a/app/about/page.tsx +++ b/app/about/page.tsx @@ -3,7 +3,7 @@ import Layout from "@/components/Layout"; export default function About() { return ( -
+

About Page

diff --git a/app/contact/page.tsx b/app/contact/page.tsx index a3903c7..7a698c4 100644 --- a/app/contact/page.tsx +++ b/app/contact/page.tsx @@ -3,7 +3,7 @@ import Layout from "@/components/Layout"; export default function Contact() { return ( -
+

Contact Page

diff --git a/app/page.tsx b/app/page.tsx index 9d643fd..89475a0 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -4,7 +4,7 @@ import Layout from "@/components/Layout"; export default function Home() { return ( -
+

Echecs France

diff --git a/components/Navbar.tsx b/components/Navbar.tsx index 7215811..3dea40e 100644 --- a/components/Navbar.tsx +++ b/components/Navbar.tsx @@ -2,7 +2,7 @@ import Link from "next/link"; export default function Navbar() { return ( -