|
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> |
|
); |
|
} |
|
|