Skip to content

Commit

Permalink
add svg logo (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanatkn committed Jul 2, 2024
1 parent 9e0ecad commit 0fae732
Show file tree
Hide file tree
Showing 8 changed files with 138 additions and 65 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[<img src="/static/favicon.png" align="right" width="192" height="192">](https://template.fuz.dev/)
[<img src="/static/logo.svg" alt="a friendly pixelated spider facing you" align="right" width="192" height="192">](https://template.fuz.dev/)

# @ryanatkn/fuz_template ❄

Expand Down
152 changes: 105 additions & 47 deletions package-lock.json

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

18 changes: 10 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,28 +3,30 @@
"version": "0.0.1",
"description": "a static web app and Node library template with TypeScript, Svelte, SvelteKit, Vite, esbuild, Fuz, and Gro",
"glyph": "",
"logo": "logo.svg",
"logo_alt": "a friendly pixelated spider facing you",
"public": true,
"homepage": "https://template.fuz.dev/",
"repository": "https://github.com/ryanatkn/fuz_template",
"type": "module",
"engines": {
"node": ">=20.12"
},
"scripts": {
"start": "gro dev",
"dev": "gro dev",
"build": "gro build",
"test": "gro test",
"deploy": "gro deploy"
},
"type": "module",
"engines": {
"node": ">=20.12"
},
"devDependencies": {
"@ryanatkn/belt": "^0.23.0",
"@ryanatkn/belt": "^0.24.1",
"@ryanatkn/eslint-config": "^0.1.3",
"@ryanatkn/fuz": "^0.105.2",
"@ryanatkn/gro": "^0.126.0",
"@ryanatkn/fuz": "^0.106.3",
"@ryanatkn/gro": "^0.128.0",
"@ryanatkn/moss": "^0.6.2",
"@sveltejs/adapter-static": "^3.0.2",
"@sveltejs/kit": "^2.5.17",
"@sveltejs/kit": "^2.5.18",
"@sveltejs/vite-plugin-svelte": "^3.1.1",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
Expand Down
1 change: 1 addition & 0 deletions src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<link rel="icon" href="%sveltekit.assets%/logo.svg" sizes="any" type="image/svg+xml" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
%sveltekit.head%
</head>
Expand Down
4 changes: 1 addition & 3 deletions src/routes/about/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,7 @@
</div>
</section>
<section class="box">
<Library_Footer {pkg} root_url="https://www.fuz.dev/">
<div class="mb_xl"><Breadcrumb>{package_json.glyph}</Breadcrumb></div>
</Library_Footer>
<Library_Footer {pkg} root_url="https://www.fuz.dev/" />
</section>
</main>

Expand Down
14 changes: 8 additions & 6 deletions src/routes/package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,26 +9,28 @@ export const package_json = {
description:
'a static web app and Node library template with TypeScript, Svelte, SvelteKit, Vite, esbuild, Fuz, and Gro',
glyph: '❄',
logo: 'logo.svg',
logo_alt: 'a friendly pixelated spider facing you',
public: true,
homepage: 'https://template.fuz.dev/',
repository: 'https://github.com/ryanatkn/fuz_template',
type: 'module',
engines: {node: '>=20.12'},
scripts: {
start: 'gro dev',
dev: 'gro dev',
build: 'gro build',
test: 'gro test',
deploy: 'gro deploy',
},
type: 'module',
engines: {node: '>=20.12'},
devDependencies: {
'@ryanatkn/belt': '^0.23.0',
'@ryanatkn/belt': '^0.24.1',
'@ryanatkn/eslint-config': '^0.1.3',
'@ryanatkn/fuz': '^0.105.2',
'@ryanatkn/gro': '^0.126.0',
'@ryanatkn/fuz': '^0.106.3',
'@ryanatkn/gro': '^0.128.0',
'@ryanatkn/moss': '^0.6.2',
'@sveltejs/adapter-static': '^3.0.2',
'@sveltejs/kit': '^2.5.17',
'@sveltejs/kit': '^2.5.18',
'@sveltejs/vite-plugin-svelte': '^3.1.1',
'@typescript-eslint/eslint-plugin': '^7.14.1',
'@typescript-eslint/parser': '^7.14.1',
Expand Down
Binary file modified static/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions static/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 0fae732

Please sign in to comment.