dh secret manager

This commit is contained in:
2024-03-17 09:31:30 -06:00
parent df20a47253
commit 2f3f2fd81e
11 changed files with 5660 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import { Roboto } from "next/font/google";
import "./globals.css";
import {
BookOpenIcon,
@@ -11,7 +11,7 @@ import {
import Link from "next/link";
import { DevToolboxContextProvider } from "@/components/devtools/context";
const inter = Inter({ subsets: ["latin"] });
const roboto = Roboto({ subsets: ["latin"], weight: "400" });
export const metadata: Metadata = {
title: "Tabletop Commander",
@@ -51,11 +51,9 @@ export default function RootLayout({
},
];
console.log(process.env.NODE_ENV);
return (
<html lang="en">
<body className={inter.className + " flex min-h-[100vh]"}>
<body className={roboto.className + " flex min-h-[100vh]"}>
<nav className="h-[100vh] sticky top-0 left-0 bottom-0 p-8 rounded-r-3xl dark:bg-mixed-300 bg-primary-400 w-max shadow-2xl">
<h1 className="text-lg font-bold pb-6 border-b dark:border-dark-500 border-primary-600">
<Link href="/">Tabletop Commander</Link>