-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlayout.tsx
32 lines (29 loc) · 991 Bytes
/
layout.tsx
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
26
27
28
29
30
31
32
import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
import Navbar from "@/components/navigation/NavigationBar";
import Footer from "@/components/navigation/Footer";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Templates - Teable",
description:
"Dive into the world of Teable Templates! Pick your perfect match from our carefully crafted collection and leap into action with Teable, tailored just for you.",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<link rel="icon" href="/favicon/favicon.svg" type="image/svg+xml" />
<link rel="apple-touch-icon" href="/favicon/apple-touch-icon.png" />
<link rel="manifest" href="/favicon/site.webmanifest" />
<body className={inter.className}>
<Navbar />
{children}
<Footer />
</body>
</html>
);
}