Compare commits

..

5 commits

5 changed files with 27 additions and 16 deletions

1
.husky/pre-commit Normal file
View file

@ -0,0 +1 @@
bunx lint-staged

BIN
bun.lockb

Binary file not shown.

View file

@ -9,13 +9,17 @@
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"lint": "prettier --check .",
"format": "prettier --write ."
"format": "prettier --write .",
"prepare": "husky"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/enhanced-img": "^0.3.9",
"@sveltejs/kit": "^2.5.27",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"autoprefixer": "^10.4.20",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.2.6",
@ -23,12 +27,15 @@
"svelte-check": "^4.0.0",
"tailwindcss": "^3.4.11",
"typescript": "^5.5.0",
"vite": "^5.4.4",
"@sveltejs/enhanced-img": "^0.3.9"
"vite": "^5.4.4"
},
"type": "module",
"dependencies": {
"clsx": "^2.1.1",
"moderndash": "^3.12.0",
"svelte-highlight": "^7.7.0"
},
"lint-staged": {
"{package.json,*.js,src/**.{svelte,ts,js,css}}": "prettier --write --ignore-unknown"
}
}

View file

@ -1,16 +1,17 @@
<script>
import flower from "$lib/assets/flower.svg";
import flowerGray from "$lib/assets/flower-gray.svg";
<script lang="ts">
import { range } from "moderndash"
</script>
<div class="flex w-full justify-center gap-x-12">
<!--
NOTE: enhanced:img seems to break when trying to have more than one element, so we are
using the normal img element instead...
-->
<img src={flower} width="24" height="24" alt="flower" />
<img src={flowerGray} width="24" height="24" alt="flower" />
<img src={flower} width="24" height="24" alt="flower" />
<img src={flowerGray} width="24" height="24" alt="flower" />
<img src={flower} width="24" height="24" alt="flower" />
{#snippet flower(alt)}
{#if alt}
<enhanced:img src="$lib/assets/flower-gray.svg" width="24" height="24" alt="flower" />
{:else}
<enhanced:img src="$lib/assets/flower.svg" width="24" height="24" alt="flower" />
{/if}
{/snippet}
{#each range(1, 5) as i}
{@render flower(i % 2 == 0)}
{/each}
</div>

View file

@ -146,7 +146,8 @@
<!-- https://pad.lix.systems/v0Bew569R_2IB0abRSy4kA?view=#Pretty-much-final-draft-About-us -->
<div class="grid lg:grid-cols-3 gap-6 justify-center my-8 w-full xl:w-[115%] xl:-ms-[7.5%] opacity-[0.4] hidden">
{#if false}
<div class="grid lg:grid-cols-3 gap-6 justify-center my-8 w-full xl:w-[115%] xl:-ms-[7.5%] opacity-[0.4]">
<div class="bg-blue-50 p-4 rounded-lg drop-shadow-lg">
<h3 class="text-2xl font-bold text-coral-600">Community Focused</h3>
Floral is a non-profit organization ran by volunteer developers.<br>
@ -165,5 +166,6 @@
you should have an easy time compared to traditional *nix distributions.
</div>
</div>
{/if}
<!-- show nixos tests -->