From ccdadbe5b7f26b6ac60d0a5419692ef88ee79b67 Mon Sep 17 00:00:00 2001 From: Jared Palmer Date: Fri, 19 May 2023 14:29:13 -0400 Subject: [PATCH] Simplify --- {styles => app}/globals.css | 0 app/layout.tsx | 2 +- types/nav.ts | 6 ------ 3 files changed, 1 insertion(+), 7 deletions(-) rename {styles => app}/globals.css (100%) delete mode 100644 types/nav.ts diff --git a/styles/globals.css b/app/globals.css similarity index 100% rename from styles/globals.css rename to app/globals.css diff --git a/app/layout.tsx b/app/layout.tsx index f03193a..eb3ca71 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,4 +1,4 @@ -import "@/styles/globals.css"; +import "./globals.css"; import { Metadata } from "next"; import { ThemeProvider } from "@/components/theme-provider"; diff --git a/types/nav.ts b/types/nav.ts deleted file mode 100644 index d351ccf..0000000 --- a/types/nav.ts +++ /dev/null @@ -1,6 +0,0 @@ -export interface NavItem { - title: string; - href?: string; - disabled?: boolean; - external?: boolean; -}