diff --git a/public/favicon.ico b/public/favicon.ico index 60c702a..a1042d4 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/public/images/tech_tracker_logo.png b/public/images/tech_tracker_logo.png new file mode 100644 index 0000000..8973d13 Binary files /dev/null and b/public/images/tech_tracker_logo.png differ diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1f97126..aebbeae 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,19 +1,20 @@ import "~/styles/globals.css"; import { Inter as FontSans } from "next/font/google"; import { cn } from "~/lib/utils"; +import { SessionProvider } from "next-auth/react"; + +import { type Metadata } from "next"; +export const metadata: Metadata = { + title: "Tech Tracker", + description: "App used by COG IT employees to update their status throughout the day.", + icons: [{ rel: "icon", url: "/favicon.ico" }], +}; const fontSans = FontSans({ subsets: ["latin"], variable: "--font-sans", }); -import { type Metadata } from "next"; -export const metadata: Metadata = { - title: "Create T3 App", - description: "Generated by create-t3-app", - icons: [{ rel: "icon", url: "/favicon.ico" }], -}; - export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { @@ -22,10 +23,11 @@ export default function RootLayout({
- {children} +