Mutual Highlighting (#41) (#55)

* Mutual Highlighting (#41)

* Tidy up

* Delete unused API route
This commit is contained in:
Timothy Armes
2023-07-05 13:55:56 +02:00
committed by GitHub
parent 96fda01929
commit 1715b1646b
18 changed files with 451 additions and 272 deletions
+6 -3
View File
@@ -6,6 +6,7 @@ import { notFound } from "next/navigation";
import { ReactNode } from "react";
import "@/app/globals.css";
import Providers from "./providers";
import TestableLayout from "./components/TestableLayout";
const inter = Inter({ subsets: ["latin"] });
@@ -50,9 +51,11 @@ export default async function RootLayout({
return (
<html lang={locale}>
<body className={inter.className}>
<TestableLayout locale={locale} messages={messages}>
{children}
</TestableLayout>
<Providers>
<TestableLayout locale={locale} messages={messages}>
{children}
</TestableLayout>
</Providers>
<Analytics />
</body>
</html>