File size: 615 Bytes
d04e364 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
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>
);
}
|