mhsf-dev/apps/www/src/app/(main)/layout.tsx

76 lines
2.7 KiB
TypeScript
Raw Normal View History

2025-02-15 17:18:58 -06:00
/*
* MHSF, Minehut Server List
* All external content is rather licensed under the ECA Agreement
* located here: https://mhsf.app/docs/legal/external-content-agreement
*
* All code under MHSF is licensed under the MIT License
* by open source contributors
*
2025-02-22 11:13:48 -06:00
* Copyright (c) 2025 dvelo
2025-02-15 17:18:58 -06:00
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
import "../globals.css";
import { IsScript } from "@/components/util/is-script";
import { NavBar } from "@/components/feat/navbar/navbar";
2025-02-15 20:06:35 -06:00
import { TooltipProvider } from "@/components/ui/tooltip";
2025-02-16 13:37:40 -06:00
import { ThemeProvider } from "@/components/util/theme-provider";
import { FontBoundary } from "@/components/util/font-boundary";
import { ClerkProvider } from "@/components/util/clerk-provider";
2025-02-22 10:38:19 -06:00
import { Toaster } from "sonner";
2025-03-02 18:28:20 -06:00
import { Footer } from "@/components/feat/footer/footer";
2025-03-08 15:21:26 -06:00
import { NuqsAdapter } from "nuqs/adapters/next/app";
2025-02-15 17:18:58 -06:00
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
2025-04-29 19:00:22 -05:00
<>
2025-02-22 10:38:19 -06:00
<ThemeProvider
attribute="class"
defaultTheme="system"
enableSystem
disableTransitionOnChange
>
2025-04-04 21:10:50 -05:00
<ClerkProvider>
<IsScript>
<NuqsAdapter>
<FontBoundary>
<TooltipProvider>
<Toaster richColors position="top-center" />
<ClerkProvider>
<NavBar />
<div className="pt-16 min-h-screen">{children}</div>
<Footer />
</ClerkProvider>
</TooltipProvider>
</FontBoundary>
</NuqsAdapter>
</IsScript>
</ClerkProvider>
2025-02-22 10:38:19 -06:00
</ThemeProvider>
2025-04-29 19:00:22 -05:00
</>
2025-02-15 17:18:58 -06:00
);
}