Skip to content

Commit

Permalink
fix: Favicons
Browse files Browse the repository at this point in the history
  • Loading branch information
dogukanoksuz committed Nov 20, 2023
1 parent b094a6e commit 17b46b2
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ import "@/styles/globals.css"

import { Metadata, Viewport } from "next"

import { siteConfig } from "@/config/site"
import { fontSans } from "@/lib/fonts"
import { cn } from "@/lib/utils"
import Bg from "@/components/ui/bg"
import { SiteFooter } from "@/components/footer"
import Lines from "@/components/lines"
import { SiteHeader } from "@/components/site-header"
import { ThemeProvider } from "@/components/theme-provider"
import Bg from "@/components/ui/bg"
import { siteConfig } from "@/config/site"
import { fontSans } from "@/lib/fonts"
import { cn } from "@/lib/utils"

export const metadata: Metadata = {
title: {
Expand All @@ -18,9 +18,9 @@ export const metadata: Metadata = {
},
description: siteConfig.description,
icons: {
icon: "/favicon.ico",
shortcut: "/favicon-16x16.png",
apple: "/apple-touch-icon.png",
icon: "/favicon.png",
shortcut: "/favicon.png",
apple: "/favicon.png",
},
}

Expand Down

0 comments on commit 17b46b2

Please sign in to comment.