forked from oss-slu/lrda_website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.tsx
More file actions
40 lines (31 loc) · 850 Bytes
/
layout.tsx
File metadata and controls
40 lines (31 loc) · 850 Bytes
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
33
34
import './globals.css';
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
const inter = Inter({ subsets: ['latin'] });
export const metadata: Metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<>
{/* Add your metadata here */}
<title>{metadata.title}</title>
<meta name="description" content={metadata.description} />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
/>
<body className={inter.className}>
<header>
{/* Header content (search bar removed) */}
</header>
<main>{children}</main>
</body>
</>
);
}