diff --git a/public/next.svg b/public/next.svg deleted file mode 100644 index 5174b28..0000000 --- a/public/next.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/app/favicon.ico b/src/app/favicon.ico index 718d6fe..2dbbe61 100644 Binary files a/src/app/favicon.ico and b/src/app/favicon.ico differ diff --git a/src/app/layout.tsx b/src/app/layout.tsx index dc378d7..d0822a1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,25 +1,28 @@ -import './globals.css' -import type { Metadata } from 'next' -import { Roboto } from 'next/font/google' +import "./globals.css"; +import type { Metadata } from "next"; +import { Roboto } from "next/font/google"; const roboto = Roboto({ - subsets: ['latin'], - weight: '400' -}) + subsets: ["latin"], + weight: "400", +}); export const metadata: Metadata = { - title: 'Create Next App', - description: 'Generated by create next app', -} + title: "Now Chat", + description: "Generated by create next app", +}; export default function RootLayout({ children, }: { - children: React.ReactNode + children: React.ReactNode; }) { return ( +
+ + {children} - ) + ); }