mirror of
https://github.com/TheRealOwenRees/echecsfrance.git
synced 2026-07-23 12:36:57 +00:00
Minor text corrections
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
"use client";
|
||||
|
||||
import { useSetAtom } from "jotai";
|
||||
import { useTranslations } from "next-intl";
|
||||
import { FaGithub, FaRegEnvelope } from "react-icons/fa";
|
||||
|
||||
import { burgerMenuIsOpenAtom } from "@/atoms";
|
||||
import { Link, usePathname } from "@/utils/navigation";
|
||||
|
||||
import { useSetAtom } from "jotai";
|
||||
import { burgerMenuIsOpenAtom } from "@/atoms";
|
||||
import ThemeSwitcher from "./ThemeSwitcher";
|
||||
|
||||
export default function Footer() {
|
||||
@@ -19,7 +19,10 @@ export default function Footer() {
|
||||
className="fixed bottom-0 z-30 flex h-12 w-[100vw] flex-col items-center justify-center justify-items-center bg-primary-600 px-5 py-2 text-white dark:bg-gray-700"
|
||||
data-test="footer"
|
||||
>
|
||||
<div className="flex items-center py-2 hover:[&_a]:opacity-80" onClick={() => setBurgerMenuIsOpen(false)}>
|
||||
<div
|
||||
className="flex items-center py-2 hover:[&_a]:opacity-80"
|
||||
onClick={() => setBurgerMenuIsOpen(false)}
|
||||
>
|
||||
<a
|
||||
href="https://github.com/TheRealOwenRees/echecsfrance"
|
||||
target="_blank"
|
||||
|
||||
@@ -71,7 +71,7 @@ export default async function RootLayout({
|
||||
<body>
|
||||
<Providers>
|
||||
<NextIntlClientProvider locale={locale} messages={messages}>
|
||||
<div className="bg-white pb-40 font-sans leading-normal tracking-normal dark:bg-gray-700 dark:bg-gray-800">
|
||||
<div className="bg-white pb-40 font-sans leading-normal tracking-normal dark:bg-gray-800">
|
||||
{children}
|
||||
</div>
|
||||
|
||||
|
||||
@@ -76,7 +76,7 @@ export default function Home() {
|
||||
<section
|
||||
className={twMerge(
|
||||
"row-span-4 grid gap-4",
|
||||
// We use subgrid if possible (to align columns across each button), falling back to a grid
|
||||
// We use subgrid if possible to align the sections horizontally, falling back to a grid
|
||||
"grid-rows-[auto_min-content_1fr_max-content]",
|
||||
"grid-rows-[subgrid] gap-2",
|
||||
)}
|
||||
@@ -101,7 +101,7 @@ export default function Home() {
|
||||
<section
|
||||
className={twMerge(
|
||||
"row-span-4 grid gap-4",
|
||||
// We use subgrid if possible (to align columns across each button), falling back to a grid
|
||||
// We use subgrid if possible to align the sections horizontally, falling back to a grid
|
||||
"grid-rows-[auto_min-content_1fr_max-content]",
|
||||
"grid-rows-[subgrid] gap-2",
|
||||
)}
|
||||
@@ -125,7 +125,7 @@ export default function Home() {
|
||||
<section
|
||||
className={twMerge(
|
||||
"row-span-4 grid gap-4",
|
||||
// We use subgrid if possible (to align columns across each button), falling back to a grid
|
||||
// We use subgrid if possible to align the sections horizontally, falling back to a grid
|
||||
"grid-rows-[auto_min-content_1fr_max-content]",
|
||||
"grid-rows-[subgrid] gap-2",
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user