From 67a543d8dd106bd2bd73dfaeb2bd3935c5255c7b Mon Sep 17 00:00:00 2001 From: 0thigs Date: Mon, 2 Dec 2024 00:50:29 -0300 Subject: [PATCH] =?UTF-8?q?[front]=E2=9C=A8feat:=20add=20favicon=20to=20th?= =?UTF-8?q?e=20page?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web/src/app/layout.tsx | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/apps/web/src/app/layout.tsx b/apps/web/src/app/layout.tsx index 647e234d..b6d86a5d 100644 --- a/apps/web/src/app/layout.tsx +++ b/apps/web/src/app/layout.tsx @@ -1,18 +1,21 @@ -import type { Metadata } from 'next' -import type { ReactNode } from 'react' +import type { Metadata } from "next"; +import type { ReactNode } from "react"; -import { RootLayout } from '@/ui/components/layouts/root' -import '../ui/styles/globals.css' +import { RootLayout } from "@/ui/components/layouts/root"; +import "../ui/styles/globals.css"; export const metadata: Metadata = { - title: 'Stocker', - description: 'Inventory management app', -} + title: "Stocker", + description: "Inventory management app", + icons: { + icon: "https://i.imgur.com/ifXWlGH.png", + }, +}; type LayoutProps = { - children: ReactNode -} + children: ReactNode; +}; export default function Layout({ children }: LayoutProps) { - return {children} + return {children}; }