Skip to content

Commit

Permalink
[front]✨feat: add favicon to the page
Browse files Browse the repository at this point in the history
  • Loading branch information
0thigs committed Dec 2, 2024
1 parent 1db13b2 commit 67a543d
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions apps/web/src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -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 <RootLayout>{children}</RootLayout>
return <RootLayout>{children}</RootLayout>;
}

0 comments on commit 67a543d

Please sign in to comment.