ollama/web/app/layout.tsx

15 lines
317 B
TypeScript
Raw Normal View History

2023-07-02 23:52:40 +00:00
import './globals.css'
export const metadata = {
title: 'Ollama',
description: 'A tool for running large language models',
}
2023-07-06 01:15:49 +00:00
export default function RootLayout({ children }: { children: React.ReactNode }) {
2023-07-02 23:52:40 +00:00
return (
<html lang='en'>
<body className='antialiased'>{children}</body>
2023-07-02 23:52:40 +00:00
</html>
)
}