mirror of
https://github.com/aljazceru/rabbit.git
synced 2025-12-17 05:54:19 +01:00
feat: copyright and link to GitHub on initial page
This commit is contained in:
@@ -12,7 +12,7 @@ A nostr client like TweetDeck made with SolidJS.
|
|||||||
|
|
||||||
## LICENSE
|
## LICENSE
|
||||||
|
|
||||||
Copyright (C) 2023 Shusui Moyatani and [Rabbit contributors](https://github.com/syusui-s/rabbit/graphs/contributors)
|
Copyright (C) 2023, 2024 Shusui Moyatani and [Rabbit contributors](https://github.com/syusui-s/rabbit/graphs/contributors)
|
||||||
|
|
||||||
AGPL-3.0-or-later
|
AGPL-3.0-or-later
|
||||||
|
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ const About: Component<AboutProps> = (props) => {
|
|||||||
<h2 class="my-4 text-xl font-bold">{i18n.t('about.termOfService')}</h2>
|
<h2 class="my-4 text-xl font-bold">{i18n.t('about.termOfService')}</h2>
|
||||||
|
|
||||||
<p class="my-4">
|
<p class="my-4">
|
||||||
Copyright (C) 2023 Shusui Moyatani and{' '}
|
Copyright © 2023, 2024 Shusui Moyatani and{' '}
|
||||||
<SafeLink
|
<SafeLink
|
||||||
class="text-link underline"
|
class="text-link underline"
|
||||||
href="https://github.com/syusui-s/rabbit/graphs/contributors"
|
href="https://github.com/syusui-s/rabbit/graphs/contributors"
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ import { createSignal, onMount, Switch, Match, type Component } from 'solid-js';
|
|||||||
import { useNavigate } from '@solidjs/router';
|
import { useNavigate } from '@solidjs/router';
|
||||||
|
|
||||||
import SignerExtensions from '@/components/SignerExtensions';
|
import SignerExtensions from '@/components/SignerExtensions';
|
||||||
|
import SafeLink from '@/components/utils/SafeLink';
|
||||||
import usePersistStatus from '@/hooks/usePersistStatus';
|
import usePersistStatus from '@/hooks/usePersistStatus';
|
||||||
import { useTranslation } from '@/i18n/useTranslation';
|
import { useTranslation } from '@/i18n/useTranslation';
|
||||||
import resolveAsset from '@/utils/resolveAsset';
|
import resolveAsset from '@/utils/resolveAsset';
|
||||||
@@ -85,6 +86,24 @@ const Hello: Component = () => {
|
|||||||
</Match>
|
</Match>
|
||||||
</Switch>
|
</Switch>
|
||||||
</div>
|
</div>
|
||||||
|
<p class="mt-4 text-xs text-fg-secondary">
|
||||||
|
Copyright © 2023, 2024{' '}
|
||||||
|
<SafeLink class="underline hover:text-fg-tertiary" href="https://github.com/syusui-s/">
|
||||||
|
Shusui Moyatani
|
||||||
|
</SafeLink>{' '}
|
||||||
|
and{' '}
|
||||||
|
<SafeLink
|
||||||
|
class="underline hover:text-fg-tertiary"
|
||||||
|
href="https://github.com/syusui-s/rabbit/graphs/contributors"
|
||||||
|
>
|
||||||
|
Rabbit contributors
|
||||||
|
</SafeLink>
|
||||||
|
</p>
|
||||||
|
<p class="mt-1 text-xs text-fg-secondary">
|
||||||
|
<SafeLink class="underline hover:text-fg-tertiary" href="https://github.com/syusui-s/">
|
||||||
|
GitHub
|
||||||
|
</SafeLink>
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user