26 lines
880 B
Plaintext
26 lines
880 B
Plaintext
---
|
|
import Layout from '../layouts/Main.astro';
|
|
import NavItems from '../components/NavItems.astro';
|
|
import NavBar from '../components/NavBar.astro';
|
|
import Footer from '../components/Footer.astro';
|
|
|
|
---
|
|
<Layout title="Rigid's App Thing">
|
|
<NavBar slot="navbar">
|
|
<NavItems slot="navItems" />
|
|
</NavBar>
|
|
<div class="row mb-4" slot="page">
|
|
<div class="col-12">
|
|
<h1>Rigid's App Thing</h1>
|
|
<p class="text-secondary">(working title)</p>
|
|
</div>
|
|
<div class="col-12">
|
|
<!-- src/components/FileUploader.astro -->
|
|
<form action="/api/upload" method="post" enctype="multipart/form-data">
|
|
<input type="file" name="file" accept=".csv" required />
|
|
<button type="submit">Upload CSV</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<Footer slot="footer" />
|
|
</Layout> |