ts-api / app /layout.jsx
Shuddho's picture
Upload 42 files
d04e364 verified
raw history blame
No virus
615 Bytes
import {Inter as Inter } from "next/font/google";
import "@/app/globals.css";
import Header from "./components/Header";
import Footer from "./components/Footer";
const inter = Inter({ subsets: ["latin"] });
export const metadata = {
title: "TS Api",
description:
"Your one stop destination for all Artificial Intelligence Models and APIs. Explore and try out all the models available.",
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body className={inter.className}>
<Header />
{children}
<Footer />
</body>
</html>
);
}