added favicon and populated template text with real text
This commit is contained in:
@@ -3,6 +3,7 @@ import { Geist, Geist_Mono } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import SiteHeader from '../components/site-header';
|
||||
import Footer from "@/components/footer";
|
||||
import favicon from "../assets/scws-logo-no-bg.png"
|
||||
|
||||
const geistSans = Geist({
|
||||
variable: "--font-geist-sans",
|
||||
@@ -34,6 +35,10 @@ export default function RootLayout({
|
||||
lang="en"
|
||||
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
|
||||
>
|
||||
<head>
|
||||
<link rel="icon" href={favicon.src} />
|
||||
</head>
|
||||
|
||||
<body className="min-h-full flex flex-col dark:bg-black">
|
||||
<SiteHeader />
|
||||
<div className="flex min-h-screen flex-col bg-zinc-50 font-sans dark:bg-black">
|
||||
|
||||
Reference in New Issue
Block a user