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

129 lines
4.5 KiB
TypeScript
Raw Normal View History

2024-10-05 09:07:26 -05:00
/*
* MHSF, Minehut Server List
* All external content is rather licensed under the ECA Agreement
* located here: https://list.mlnehut.com/docs/legal/external-content-agreement
*
* All code under MHSF is licensed under the MIT License
* by open source contributors
*
* Copyright (c) 2024 dvelo
*
* 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.
*/
2024-08-07 16:37:54 -05:00
import { Analytics } from "@vercel/analytics/react";
2024-11-03 09:38:25 -06:00
import { SpeedInsights } from "@vercel/speed-insights/next";
import { GeistSans } from "geist/font/sans";
import "../globals.css";
import ClientFadeIn from "@/components/ClientFadeIn";
import { CommandBarer } from "@/components/CommandBar";
import { BrandingGenericIcon } from "@/components/Icon";
import TextFromPathname from "@/components/TextFromPathname";
2024-07-23 18:49:21 -05:00
import { ThemeProvider } from "@/components/ThemeProvider";
import { ClerkThemeProvider } from "@/components/clerk/ClerkThemeProvider";
2024-07-26 00:46:53 -05:00
import TopBar from "@/components/clerk/Topbar";
2024-11-09 17:10:39 -06:00
import NewDomainDialog from "@/components/misc/NewDomainDialog";
2024-08-10 11:24:54 -05:00
import ThemedToaster from "@/components/misc/ThemedToaster";
2024-08-17 14:15:30 -05:00
import UnofficalDialog from "@/components/misc/UnofficalDialog";
2024-11-03 09:38:25 -06:00
import {
2024-11-17 21:10:02 -06:00
Breadcrumb,
BreadcrumbList,
BreadcrumbPage,
2024-11-03 09:38:25 -06:00
} from "@/components/ui/breadcrumb";
import { TooltipProvider } from "@/components/ui/tooltip";
import { banner } from "@/config/banner";
import NextTopLoader from "@/lib/top-loader";
2024-09-10 20:57:44 -05:00
import type { Metadata, Viewport } from "next";
2024-11-03 09:38:25 -06:00
import { Inter as interFont } from "next/font/google";
import Link from "next/link";
2024-09-06 20:14:59 -05:00
export const extraMetadata = {
2024-11-17 21:10:02 -06:00
twitter: {
images: [
{
url: "/imgs/icon-cf.png",
},
],
},
themeColor: "#000000",
openGraph: {
images: [
{
url: "/imgs/icon-cf.png",
},
],
},
2024-09-06 20:14:59 -05:00
} satisfies Metadata;
2024-09-10 20:57:44 -05:00
export const viewport: Viewport = {
2024-11-17 21:10:02 -06:00
themeColor: "black",
colorScheme: "dark",
2024-09-10 20:57:44 -05:00
};
2024-05-31 16:22:34 -05:00
2024-07-26 00:46:53 -05:00
const inter = interFont({ variable: "--font-inter", subsets: ["latin"] });
2024-07-23 18:49:21 -05:00
export default async function RootLayout({
2024-11-17 21:10:02 -06:00
children,
2024-05-31 16:22:34 -05:00
}: Readonly<{
2024-11-17 21:10:02 -06:00
children: React.ReactNode;
2024-05-31 16:22:34 -05:00
}>) {
2024-11-17 21:10:02 -06:00
return (
<ClerkThemeProvider className={GeistSans.className}>
<ThemeProvider attribute="class" defaultTheme="system" enableSystem>
<TooltipProvider>
{banner.isBanner && (
<div className="bg-orange-600 z-10 w-screen h-8 border-b fixed text-black flex items-center text-center font-medium pl-2">
{banner.bannerText}
</div>
)}
<div
className={
"w-screen h-[3rem] border-b fixed backdrop-blur flex z-10 " +
(banner.isBanner == true ? "mt-8" : "")
}
>
<div className="items-center me-auto mt-2 pl-7 max-sm:mt-3">
<Breadcrumb>
<BreadcrumbList>
<Link href="/">
<BreadcrumbPage className="max-sm:hidden">
<BrandingGenericIcon className="max-w-[32px] max-h-[32px] " />
</BreadcrumbPage>
</Link>
<TextFromPathname />
</BreadcrumbList>
</Breadcrumb>
</div>
<TopBar inter={inter.className} />
</div>
<div className={banner.isBanner ? "pt-8" : undefined}>
<NextTopLoader />
<ClientFadeIn>{children}</ClientFadeIn>
</div>{" "}
<ThemedToaster />
<CommandBarer />
<SpeedInsights />
<Analytics />
<NewDomainDialog />
<UnofficalDialog />
</TooltipProvider>
</ThemeProvider>
</ClerkThemeProvider>
);
2024-05-31 16:22:34 -05:00
}