Skip to content

Commit

Permalink
Add favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
neroices committed Dec 19, 2024
1 parent 124bd6e commit 460e7a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Binary file added src/app/favicon.ico
Binary file not shown.
7 changes: 3 additions & 4 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Inter } from 'next/font/google';
import { Inter } from "next/font/google";
import { ThemeProvider } from "./providers";
import { SiteHeader } from "@/components/site-header";
import { SiteFooter } from "@/components/site-footer";
Expand All @@ -14,6 +14,7 @@ export default function RootLayout({
}) {
return (
<html lang="en" suppressHydrationWarning>
<link rel="icon" href="/favicon.ico" sizes="any" />
<body
className={`${inter.className} min-h-screen bg-background antialiased`}
>
Expand All @@ -26,9 +27,7 @@ export default function RootLayout({
<div className="relative flex min-h-screen flex-col">
<SiteHeader />

<main className="flex-1">
{children}
</main>
<main className="flex-1">{children}</main>

<SiteFooter />
</div>
Expand Down

0 comments on commit 460e7a5

Please sign in to comment.