-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from m1her/backup
kinda finished
- Loading branch information
Showing
3 changed files
with
14 additions
and
12 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 ( | ||
<html lang="en"> | ||
<head> | ||
<link rel="icon" href="/favicon.ico" sizes="any" /> | ||
</head> | ||
<body className={roboto.className}>{children}</body> | ||
</html> | ||
) | ||
); | ||
} |