mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-28 02:18:01 -04:00
* you know, you could just work on first try * fix extension * configure plugin and fix few translation issues * more * more keys * and more * more keys and sort * commit msg * we like keys here * end my suffering * jk i just love keys * key fix * add turkish * add german * Entendido * Demnächst * Mettre une étoile sur GitHub * 成功 * pnpm-lock * vite plugin * remove i18next backends --------- Co-authored-by: Brendan Allan <brendonovich@outlook.com>
18 lines
534 B
TypeScript
18 lines
534 B
TypeScript
import { Loader } from '@sd/ui';
|
|
import { useLocale } from '~/hooks';
|
|
|
|
import { OnboardingContainer, OnboardingDescription, OnboardingTitle } from './components';
|
|
|
|
export default function OnboardingCreatingLibrary() {
|
|
const { t } = useLocale();
|
|
|
|
return (
|
|
<OnboardingContainer>
|
|
<span className="text-6xl">🛠</span>
|
|
<OnboardingTitle>{t('creating_your_library')}</OnboardingTitle>
|
|
<OnboardingDescription>{t('creating_your_library')}...</OnboardingDescription>
|
|
<Loader className="mt-5" />
|
|
</OnboardingContainer>
|
|
);
|
|
}
|