added favicon and populated template text with real text

This commit is contained in:
2026-05-31 21:50:04 +01:00
parent f67093f34e
commit cfebb4cee5
12 changed files with 103 additions and 50 deletions

View File

@@ -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">