diff --git a/astro.config.mjs b/astro.config.mjs index 78bde6b..b391880 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -10,7 +10,7 @@ export default defineConfig({ title: 'FluxServe', description: 'A serving engine for diffusion language models.', favicon: '/fluxserve-icon.png', - customCss: ['./src/styles/site.css'], + customCss: ['./src/styles/site.css', './src/styles/controls.css'], credits: false, disable404Route: true, components: { diff --git a/src/components/PageActions.astro b/src/components/PageActions.astro new file mode 100644 index 0000000..2b12a23 --- /dev/null +++ b/src/components/PageActions.astro @@ -0,0 +1,50 @@ +--- +import { Icon } from '@astrojs/starlight/components'; +interface Props { id: string; } +const { id } = Astro.props; +const markdownURL = '/markdown/' + id.split('/').map(encodeURIComponent).join('/') + '.txt'; +--- +
Install from source inside the FluxServe CUDA container ↗