From fbefd7eaa0bd6777ce8a6ab86da5d255f812e2ee Mon Sep 17 00:00:00 2001 From: Owen Rees Date: Sat, 10 Jun 2023 11:42:58 +0200 Subject: [PATCH] table header sticky top --- TODO | 2 ++ app/about/page.tsx | 2 +- app/contact/page.tsx | 2 +- app/page.tsx | 2 +- components/Navbar.tsx | 6 +++--- components/TournamentMap.tsx | 2 +- components/TournamentTable.tsx | 14 +++++++------- 7 files changed, 16 insertions(+), 14 deletions(-) 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 ( -