Skip to content

Commit

Permalink
✨ feat(all): add logo
Browse files Browse the repository at this point in the history
  • Loading branch information
angelespejo committed Feb 1, 2025
1 parent ca7b0a3 commit 773f575
Show file tree
Hide file tree
Showing 9 changed files with 5 additions and 13 deletions.
4 changes: 0 additions & 4 deletions .dev/husky/commit-msg
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
#!/usr/bin/env sh

. "$(dirname -- "$0")/_/husky.sh"

###############################################################################
# COMMIT MESSAGE
#
Expand Down
4 changes: 0 additions & 4 deletions .dev/husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
#!/usr/bin/env sh

. "$(dirname -- "$0")/_/husky.sh"

###############################################################################
# PRE COMMIT
#
Expand Down
Binary file added docs/public/logo-web.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified docs/public/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion packages/_core/src/lib/filters/main.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@
bind:presetsValue={presetsValue}
>
<div slot="header" class="flex flex-col items-center">
<img src="/logo.png" alt="Logo" width="200px" >
<img src="/logo-web.png" alt="Logo" width="200px" >
</div>
<div slot="content">
<Not >
Expand Down
2 changes: 1 addition & 1 deletion packages/_core/src/routes/filters/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
bind:presetsValue={presetsValue}
>
<div slot="header" class="flex flex-col items-center">
<img src="/logo.png" alt="Logo" width="200px" >
<img src="/logo-web.png" alt="Logo" width="200px" >
</div>
<div slot="content">
<Not >
Expand Down
2 changes: 1 addition & 1 deletion packages/app/src/lib/components/header/main.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
faMobile,
faDesktop,
} from "$lib";
import Logo from "$lib/assets/logo.png";
import Logo from "$lib/assets/logo-web.png";
import { page } from "$app/stores";
import { downloadLinks } from "./download-links";
import DownloadLink from "./download-link.svelte";
Expand Down
2 changes: 1 addition & 1 deletion packages/docs/src/.vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default defineConfig({
}
]],
themeConfig: {
logo: '/logo.png', // use first "/" for child routes
logo: '/logo-web.png', // use first "/" for child routes
siteTitle: false,
editLink: {
pattern: repoUrl+ 'edit/main/docs/:path',
Expand Down
2 changes: 1 addition & 1 deletion packages/exts/src/man/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export const icons = {
export const images = {
icons,
background : `${imagesFolder}background.png`,
logo : `${imagesFolder}logo.png`,
logo : `${imagesFolder}logo-web.png`,
}
export const contentMatches = combineUrlsWithAsterisk( allowSites )

Expand Down

0 comments on commit 773f575

Please sign in to comment.