use typescript for website

This commit is contained in:
Jeffrey Morgan
2023-07-05 20:14:46 -04:00
parent 585e863eab
commit 39b289c6a8
6 changed files with 72 additions and 1 deletions

14
web/app/layout.tsx Normal file
View File

@@ -0,0 +1,14 @@
import './globals.css'
export const metadata = {
title: 'Ollama',
description: 'A tool for running large language models',
}
export default function RootLayout({ children }) {
return (
<html lang='en'>
<body>{children}</body>
</html>
)
}