1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2024-12-29 15:11:58 +00:00

feat: immich branding

This commit is contained in:
ben-basten 2024-06-04 23:36:05 -04:00
parent 4c87890a03
commit 7180ce590a
No known key found for this signature in database
GPG key ID: 78803E894B258348
2 changed files with 15 additions and 0 deletions

View file

@ -0,0 +1,6 @@
import { addons } from '@storybook/manager-api';
import theme from './theme';
addons.setConfig({
theme,
});

9
web/.storybook/theme.ts Normal file
View file

@ -0,0 +1,9 @@
import { create } from '@storybook/theming/create';
import brandImage from '../../design/immich-logo-inline-light.png';
export default create({
base: 'light',
brandTitle: 'immich',
brandUrl: 'https://immich.app/',
brandImage,
});