1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
import {
ClerkProvider,
Show,
SignInButton,
SignUpButton,
UserButton,
} from "@clerk/nextjs";
import { Inter, Fira_Code } from "next/font/google";
import "./globals.css";
import TerminalOverlay from "@/components/TerminalOverlay";
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const firaCode = Fira_Code({
variable: "--font-fira-code",
subsets: ["latin"],
});
export const metadata = {
title: "174th Battle Group",
description: "Vengeance Within Reach",
icons: {
icon: "/favicon.png",
},
};
export default function RootLayout({ children }) {
return (
<html
lang="en"
className={`${inter.variable} ${firaCode.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col">
<ClerkProvider>
<header className="flex justify-end items-center p-4 gap-4 h-16">
<Show when="signed-out">
<SignInButton />
<SignUpButton>
<button className="bg-purple-700 text-white rounded-full font-medium text-sm sm:text-base h-10 sm:h-12 px-4 sm:px-5 cursor-pointer">
Sign Up
</button>
</SignUpButton>
</Show>
<Show when="signed-in">
<UserButton />
</Show>
</header>
<TerminalOverlay />
{children}
</ClerkProvider>
</body>
</html>
);
}
|