Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
# Deps
node_modules
node_modules/

# Output
/.svelte-kit
/build
/dist
/dist_*
/target
/.gro
/.zzz
.svelte-kit/
build/
dist/
dist_*/
target/
.gro/
.fuz/
.zzz/

# Env
.env*
Expand Down
120 changes: 87 additions & 33 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,15 @@
"node": ">=22.15"
},
"devDependencies": {
"@fuzdev/fuz_css": "^0.43.0",
"@fuzdev/fuz_ui": "^0.177.0",
"@fuzdev/fuz_util": "^0.45.1",
"@fuzdev/fuz_css": "^0.44.1",
"@fuzdev/fuz_ui": "^0.179.0",
"@fuzdev/fuz_util": "^0.45.3",
"@ryanatkn/eslint-config": "^0.9.0",
"@ryanatkn/gro": "^0.184.0",
"@ryanatkn/gro": "^0.186.0",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.49.1",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@webref/css": "^8.2.0",
"eslint": "^9.39.1",
"eslint-plugin-svelte": "^3.13.1",
"prettier": "^3.7.4",
Expand Down
6 changes: 3 additions & 3 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
const library = library_context.get();
</script>

<main class="box width_100">
<div class="box width_upto_md mb_xl9">
<main class="box width:100%">
<div class="box width_atmost_md mb_xl9">
<section class="box">
<h1 class="mb_sm" style:margin-top={MAIN_HEADER_MARGIN_TOP}>fuz</h1>
<div class="box mb_lg"><Svg data={logo_fuz} size="var(--icon_size_xl2)" /></div>
<blockquote class="shadow_bottom_sm px_xl bg mb_xl3">friendly user zystem 🦋</blockquote>
<div class="mb_lg p_xs2 shadow_md border_radius_sm">
<div class="width_upto_sm panel p_lg shadow_inset_xs bg">
<div class="width_atmost_sm panel p_lg shadow_inset_xs bg">
<p>
Fuz is a zippy stack for autonomy. Today Fuz has a collection of libraries for making
modern websites with TypeScript, CSS, Svelte, and SvelteKit, and soon they'll be joined
Expand Down
6 changes: 3 additions & 3 deletions src/routes/about/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
// TODO standardize
</script>

<main class="width_upto_md">
<main class="width_atmost_md">
<section class="box">
<header class="box pt_xl">
<Svg data={logo_fuz} size="var(--icon_size_xl)" />
<h1 class="mt_xl2">fuz.dev</h1>
</header>
</section>
<section class="box width_100 mb_lg">
<div class="panel p_lg width_upto_md">
<section class="box width:100% mb_lg">
<div class="panel p_lg width_atmost_md">
<LibraryDetail {library} />
</div>
</section>
Expand Down
Loading