This is easier

This commit is contained in:
Atridad Lahiji 2023-09-01 23:37:51 -06:00 committed by atridadl
parent 4dfb10ce34
commit 6fd7454324
No known key found for this signature in database
4 changed files with 5 additions and 21 deletions

View file

@ -5,7 +5,6 @@ import Image from "next/image";
import Link from "next/link";
import { useRouter, usePathname } from "next/navigation";
import { env } from "@/env.mjs";
import { dark } from "@clerk/themes";
interface NavbarProps {
title: string;
@ -61,11 +60,7 @@ const Navbar = ({ title }: NavbarProps) => {
</div>
{navigationMenu()}
<UserButton
afterSignOutUrl="/"
userProfileMode="modal"
appearance={{ baseTheme: dark }}
/>
<UserButton afterSignOutUrl="/" userProfileMode="modal" />
</nav>
);
};

View file

@ -3,6 +3,7 @@ import Footer from "@/app/_components/Footer";
import Header from "@/app/_components/Header";
import "@/styles/globals.css";
import Provider from "./_trpc/Provider";
import { dark } from "@clerk/themes";
export const metadata = {
title: "Sprint Padawan",
@ -15,7 +16,7 @@ export default function RootLayout({
children: React.ReactNode;
}) {
return (
<ClerkProvider>
<ClerkProvider appearance={{ baseTheme: dark }}>
<html lang="en" className="h-[100%] w-[100%] fixed overflow-y-auto">
<body className="h-[100%] w-[100%] fixed overflow-y-auto">
<ClerkLoaded>

View file

@ -1,18 +1,12 @@
"use client";
import { SignIn } from "@clerk/nextjs";
import { dark } from "@clerk/themes";
export const dynamic = "force-static";
const SignInPage = () => (
<div style={styles}>
<SignIn
path="/sign-in"
routing="path"
signUpUrl="/sign-up"
appearance={{ baseTheme: dark }}
/>
<SignIn path="/sign-in" routing="path" signUpUrl="/sign-up" />
</div>
);

View file

@ -1,18 +1,12 @@
"use client";
import { SignUp } from "@clerk/nextjs";
import { dark } from "@clerk/themes";
export const dynamic = "force-static";
const SignUpPage = () => (
<div style={styles}>
<SignUp
path="/sign-up"
routing="path"
signInUrl="/sign-in"
appearance={{ baseTheme: dark }}
/>
<SignUp path="/sign-up" routing="path" signInUrl="/sign-in" />
</div>
);