new minimal retro theme, progress on parallax hero, refactor into semantic html,
add htmx and alpine, etc
This commit is contained in:
parent
43e8dcff5e
commit
8d989ef36f
25 changed files with 1520 additions and 179 deletions
26
src/pages/tools.astro
Normal file
26
src/pages/tools.astro
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
---
|
||||
import Layout from "../layouts/BaseLayout.astro";
|
||||
---
|
||||
|
||||
<Layout>
|
||||
<title slot="head">Tools</title>
|
||||
<style>
|
||||
.tools-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
|
||||
gap: 2rem;
|
||||
max-width: 1200px;
|
||||
margin: 2rem auto 0;
|
||||
}
|
||||
</style>
|
||||
<Fragment slot="content">
|
||||
<section class="tools" id="tools">
|
||||
<h2>Tools</h2>
|
||||
<div class="tools-grid">
|
||||
<div class="tool-card">Tool 1</div>
|
||||
<div class="tool-card">Tool 2</div>
|
||||
<div class="tool-card">Tool 3</div>
|
||||
</div>
|
||||
</section>
|
||||
</Fragment>
|
||||
</Layout>
|
||||
Loading…
Add table
Add a link
Reference in a new issue