Add icon.svg and wire up metadata icons
Browse files- nextjs-app/public/icon.svg +11 -0
- nextjs-app/src/app/layout.tsx +3 -0
nextjs-app/public/icon.svg
ADDED
|
|
nextjs-app/src/app/layout.tsx
CHANGED
|
@@ -9,6 +9,9 @@ const inter = Inter({ subsets: ['latin'] })
|
|
| 9 |
export const metadata: Metadata = {
|
| 10 |
title: 'BIST Analiz - Gelişmiş Borsa Analiz Platformu',
|
| 11 |
description: 'BIST hisseleri için gelişmiş teknik analiz, ML tahminleri ve sentiment analizi',
|
|
|
|
|
|
|
|
|
|
| 12 |
}
|
| 13 |
|
| 14 |
export default function RootLayout({
|
|
|
|
| 9 |
export const metadata: Metadata = {
|
| 10 |
title: 'BIST Analiz - Gelişmiş Borsa Analiz Platformu',
|
| 11 |
description: 'BIST hisseleri için gelişmiş teknik analiz, ML tahminleri ve sentiment analizi',
|
| 12 |
+
icons: {
|
| 13 |
+
icon: '/icon.svg',
|
| 14 |
+
},
|
| 15 |
}
|
| 16 |
|
| 17 |
export default function RootLayout({
|