add tooltips
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m31s

This commit is contained in:
Lee
2024-04-17 18:08:13 +01:00
parent 1a347108c2
commit 347ee00c18
8 changed files with 454 additions and 21 deletions

View File

@ -8,6 +8,7 @@ import "./globals.css";
import Config from "../../config.json";
import Container from "./components/container";
import ThemeProvider from "./components/theme-provider";
import { TooltipProvider } from "./components/ui/tooltip";
export const viewport: Viewport = {
themeColor: "#3498DB",
@ -49,8 +50,10 @@ export default function RootLayout({
<head />
<body>
<ThemeProvider attribute="class" defaultTheme="dark" enableSystem>
<ToastContainer theme="dark" pauseOnFocusLoss={false} />
<Container>{children}</Container>
<TooltipProvider>
<ToastContainer theme="dark" pauseOnFocusLoss={false} />
<Container>{children}</Container>
</TooltipProvider>
</ThemeProvider>
</body>
</html>