Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified packages/ui/public/dedot-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions packages/ui/public/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,8 @@
"Select the accounts you'd like to connect": "",
"Set up new wallet": "",
"Set up wallet": "",
"Set up your Dedot Signer now": "",
"Set up your Dedot Signer now to connect": "",
"Set up your wallet now": "",
"Set up your wallet now to connect": "",
"Settings": "",
"Show Address QR Code": "",
"Sign": "",
Expand Down
Binary file modified packages/ui/src/assets/images/dedot-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/ui/src/components/layouts/MainFooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const MainFooter: FC<Props> = ({ className = '' }) => {
<footer className={`${className} border-t border-black/10 dark:border-white/15`}>
<Container maxWidth='sm'>
<div className='flex flex-col sm:flex-row justify-between items-center py-4 gap-4 max-w-[800px] mx-auto'>
<span className='text-sm'>Copyright &copy; 2025 dedot.dev</span>
<span className='text-sm'>Copyright &copy; 2025 <a href="https://dedot.dev" className='text-inherit' target='_blank'>dedot.dev</a></span>
<div className='flex gap-4'>
<a href='https://x.com/realsinzii' target='_blank'>
<Twitter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const RequestAccess: FC<RequestProps> = ({ className = '', message }) => {
</div>
) : (
<div>
<h6 className='text-center mb-4'>{t('Set up your Dedot Signer now to connect')}</h6>
<h6 className='text-center mb-4'>{t('Set up your wallet now to connect')}</h6>
<div className='flex gap-4'>
<Button size='large' variant='text' className='xs:w-2/5' color='warning' onClick={rejectAccess}>
{t<string>('Cancel')}
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/components/pages/Welcome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const Welcome: React.FC<WelcomeProps> = ({ className = '', onCreateNewWallet, on
</p>
</div>
<div className='mt-8'>
<h4 className='mb-4'>{t<string>('Set up your Dedot Signer now')}</h4>
<h4 className='mb-4'>{t<string>('Set up your wallet now')}</h4>

<div className='flex flex-col gap-4 items-center'>
<Button size='large' className='min-w-[270px]' onClick={doCreateNewWallet}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ describe('GuardScreen', () => {
await user.click(resetWalletButton);

expect(await screen.findByText(/Welcome to Dedot Signer/)).toBeInTheDocument();
expect(await screen.findByText(/Set up your Dedot Signer now/)).toBeInTheDocument();
expect(await screen.findByText(/Set up your wallet now/)).toBeInTheDocument();
});

it('should go to Outlet content after unlocking the wallet', async () => {
Expand Down
4 changes: 2 additions & 2 deletions packages/ui/src/components/shared/misc/DedotTextLogo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import { Link } from 'react-router-dom';
import DedotLogo from 'assets/images/dedot-logo.png';
import { Props } from 'types';

const DedotTextLogo: FC<Props> = () => {
const DedotTextLogo: FC<Props> = ({ size = 36 }) => {
return (
<Link to='/'>
<img src={DedotLogo} alt='Dedot Signer' height={36} />
<img src={DedotLogo} alt='Dedot Signer' height={size} />
</Link>
);
};
Expand Down