diff --git a/TODO b/TODO
index 6724f3e..56f6f90 100644
--- a/TODO
+++ b/TODO
@@ -1,16 +1,12 @@
TESTS
// TODO tests for tournament page:
- map and table mounts in tournament page <- get data to send to map/table
-//TODO data fetching tests
-//TODO redo layer groups tests
-//TODO write tests for contact form
-//TODO dead link tests take too long, split them into separate tests per page
-----------------------------------------------------------------
BUGS
//TODO about page is not centred in Safari
//TODO tournament page load is weird on 2nd click. On safari it pauses for a few seconds. Is it trying to load the entire page before displaying?
-//TODO Nodemailer 'from' reverts to echecsfrance@gmail.com
+//TODO Nodemailer 'from' reverts to echecsfrance@gmail.com - quick fix done with sender address in subject line
----------------------------------------------------------------
PAGES
@@ -20,23 +16,19 @@ PAGES
DESIGN CHANGES
//TODO test entire site for english to french translations
//TODO success and error messages into french - mailer
-//TODO disable send message button while sending - isSending = true
//TODO font size on mobile screen
-//TODO bottom of map is a few pixels short
-//TODO mobile navbar is creeping into the page by a few pixels when hidden - move it to the right a bit. It is easier to see in light mode
+//TODO mobile navbar is creeping into the page by a few pixels when hidden - move it to the right a bit. It is easier to see in light mode. I cant see this on Linux
//TODO logo for navbar and favicon
//TODO mobile map needs improving
----------------------------------------------------------------
LOGIC
-//TODO SRP for web and API data fetching
//TODO error handling
//TODO consider offering GraphQL support
MISC
----------------------------------------------------------------
//TODO write logger (fullstack open examples)
-//TODO SEO - next headers etc
//TODO multi-language i18n support - https://nextjs.org/docs/app/building-your-application/routing/internationalization
//TODO move smaller ui components into a new folder, and make them reusable - such as using generic prop names
//TODO readme
diff --git a/app/api/v1/tournaments/france/route.ts b/app/api/v1/tournaments/france/route.ts
index afcd444..0ccd2c1 100644
--- a/app/api/v1/tournaments/france/route.ts
+++ b/app/api/v1/tournaments/france/route.ts
@@ -14,7 +14,6 @@ export async function GET() {
try {
const client = await clientPromise;
const db = client.db("tournamentsFranceDB");
-
const results = await dateOrderingFrance(db);
const data = results.map(({ _id, ...rest }) => ({
id: _id,
diff --git a/app/contactez-nous/page.tsx b/app/contactez-nous/page.tsx
index b2e8bde..8a8a2b3 100644
--- a/app/contactez-nous/page.tsx
+++ b/app/contactez-nous/page.tsx
@@ -9,7 +9,7 @@ export default function Contact() {
Contactez-Nous
diff --git a/app/layout.tsx b/app/layout.tsx
index f09c65b..50bb68a 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -7,7 +7,8 @@ const inter = Inter({ subsets: ["latin"] });
export const metadata = {
title: "Echecs France",
- description: "Generated by create next app", // TODO give the website a description + maybe keywords if they go here
+ description: "Trouvez Vos Tournois d'Echecs en France Sur Une Carte",
+ keywords: "echecs, France, tournoi, tournois, FFE",
};
export default function RootLayout({
diff --git a/app/page.tsx b/app/page.tsx
index 7fb3e4b..1f60bcd 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -16,7 +16,7 @@ export default function Home() {
/>
-
+
Echecs France
diff --git a/app/qui-sommes-nous/page.tsx b/app/qui-sommes-nous/page.tsx
index 8c5c878..aac9bba 100644
--- a/app/qui-sommes-nous/page.tsx
+++ b/app/qui-sommes-nous/page.tsx
@@ -8,7 +8,7 @@ export default function About() {