diff --git a/app/favicon.ico b/app/favicon.ico deleted file mode 100644 index 718d6fe..0000000 Binary files a/app/favicon.ico and /dev/null differ diff --git a/app/layout.tsx b/app/layout.tsx index 136ef55..b4680b1 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -4,6 +4,8 @@ import './globals.css'; import ChartInit from '@/utils/ChartInit'; import Footer from '@/components/Footer'; import SearchBar from '@/components/SearchBar'; +import Image from 'next/image'; +import Logo from '../public/weather.png'; const poppins = Poppins({ subsets: ['latin'], @@ -16,11 +18,13 @@ export const metadata: Metadata = { keywords: ['weather', 'forecast', 'air quality', 'maps', 'star weather', 'starweather', 'opensource', 'open source', 'react', 'nextjs', 'tailwindcss', 'typescript'], metadataBase: new URL("http://star-weather.vercel.app"), openGraph:{ - images:[{ url: '/banner.png' - }] - } + }], + }, + icons: { + icon: '/weather.png', + }, }; export default function RootLayout({ @@ -33,7 +37,13 @@ export default function RootLayout({