feat(projects, home): converted over from dioxus completely, todo blogs and rewrite projects to get data from backend, possibly rewrite techCat as well

This commit is contained in:
2025-07-15 18:08:37 -06:00
parent 4734a4cd57
commit 2d17aaa0e7
12 changed files with 1543 additions and 4 deletions

View File

@ -0,0 +1,45 @@
<script>
import TechCard from './techCard.svelte';
let { cat, tech_vec } = $props();
</script>
<div class="tech-cat">
<h3>{cat}</h3>
<div class="tech-row">
{#each tech_vec as tech}
<TechCard tech_props={tech} />
{/each}
</div>
</div>
<style>
:root {
--tech-gap: 4svw;
}
h3 {
border-bottom: var(--underlineTitle);
border-radius: var(--underlineTitleBorderRadius);
display: flex;
margin: 2svh 2svw;
padding: 0svh 2svw;
padding-bottom: 1svh;
}
.tech-cat {
padding: 0px 1svw;
padding-bottom: 2svh;
margin-bottom: 3svh;
flex: 1 1 auto;
background-color: var(--card-background-color);
border-radius: var(--card-border-radius);
}
.tech-row {
display: flex;
flex-flow: row wrap;
justify-content: space-evenly;
row-gap: 1svh;
}
</style>