Skip to content

Commit

Permalink
Merge pull request #5 from m1her/backup
Browse files Browse the repository at this point in the history
kinda finished
  • Loading branch information
m1her authored Sep 3, 2023
2 parents dba0099 + 4c9fe8c commit 5da4a0b
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
1 change: 0 additions & 1 deletion public/next.svg

This file was deleted.

Binary file modified src/app/favicon.ico
Binary file not shown.
25 changes: 14 additions & 11 deletions src/app/layout.tsx
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>
)
);
}

0 comments on commit 5da4a0b

Please sign in to comment.