Skip to content

Commit ab75621

Browse files
committed
Update layout.tsx
1 parent 4586f13 commit ab75621

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

app/layout.tsx

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import type { Metadata } from 'next';
12
import { Provider } from './provider';
23
import './global.css';
34
import { Inter } from 'next/font/google';
@@ -6,6 +7,14 @@ const inter = Inter({
67
subsets: ['latin'],
78
});
89

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+
918
export default function Layout({ children }: LayoutProps<'/'>) {
1019
return (
1120
<html lang="en" className={inter.className} suppressHydrationWarning>

0 commit comments

Comments
 (0)