Spaces:
Configuration error
Configuration error
File size: 426 Bytes
b06ed0c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
---
import Layout from '../layouts/Layout.astro'
import Header from '../components/Header.astro'
import Footer from '../components/Footer.astro'
import Generator from '../components/Generator'
import '../message.css'
import 'katex/dist/katex.min.css'
import 'highlight.js/styles/atom-one-dark.css'
---
<Layout title="ChatGPT API Demo">
<main>
<Header />
<Generator client:load />
<Footer />
</main>
</Layout>
|