Skip to content

Commit

Permalink
Add favicon.ico to layout.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebstep committed Oct 10, 2023
1 parent bd145a2 commit 8e97d44
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Binary file modified app/favicon.ico
100644 → 100755
Binary file not shown.
5 changes: 4 additions & 1 deletion app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import "./globals.css";
import * as React from "react";
import Head from "next/head";
import { Inter } from "next/font/google";
import type { Metadata } from "next";
import Navigation from "@/components/Navigation";
Expand All @@ -21,7 +22,9 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<head></head>
<Head>
<link rel="icon" href="/favicon.ico" />
</Head>
<body className={inter.className}>
<Navigation />
<main className="container mx-auto">{children}</main>
Expand Down

0 comments on commit 8e97d44

Please sign in to comment.