We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4586f13 commit ab75621Copy full SHA for ab75621
app/layout.tsx
@@ -1,3 +1,4 @@
1
+import type { Metadata } from 'next';
2
import { Provider } from './provider';
3
import './global.css';
4
import { Inter } from 'next/font/google';
@@ -6,6 +7,14 @@ const inter = Inter({
6
7
subsets: ['latin'],
8
});
9
10
+export const metadata: Metadata = {
11
+ title: {
12
+ template: '%s | llmspy.org',
13
+ default: 'llmspy.org',
14
+ },
15
+ description: 'Lightweight OpenAI compatible CLI and server gateway for multiple LLMs',
16
+};
17
+
18
export default function Layout({ children }: LayoutProps<'/'>) {
19
return (
20
<html lang="en" className={inter.className} suppressHydrationWarning>
0 commit comments