Files
ChatMaps/frontend-next/src/app/chat/layout.js
T
2024-03-31 02:28:57 +00:00

18 lines
393 B
JavaScript

import { Inter } from "next/font/google";
import "../globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata = {
title: "ChatMaps: Chat",
description: "ChatMaps: Social Media for College Students",
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body className={inter.className}>{children}</body>
</html>
);
}