Skip to content

Commit

Permalink
Extension: Login page NITs + icons (#8664)
Browse files Browse the repository at this point in the history
  • Loading branch information
PopDaph authored Nov 15, 2024
1 parent 00db557 commit f7f016d
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 4 deletions.
Binary file added extension/app/images/dust128.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 added extension/app/images/dust16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Binary file added extension/app/images/dust48.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 added extension/app/images/icon128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 4 additions & 3 deletions extension/app/src/pages/LoginPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ export const LoginPage = () => {
return (
<div className="flex h-screen flex-col p-4">
<div className="flex flex-1 flex-col items-center justify-center gap-8">
<div className="flex flex-col items-center text-center space-y-4">
<LogoHorizontalColorLogo className="h-6 w-24" />
<div className="flex flex-col items-center text-center space-y-9 max-w-[400px]">
<LogoHorizontalColorLogo className="h-12 w-48" />
<Page.Header title="Get more done, faster, with the power of your assistants at your fingertips." />
</div>
<div className="text-center">
Expand All @@ -59,10 +59,11 @@ export const LoginPage = () => {
label="Sign in"
onClick={handleLogin}
disabled={isLoading}
size="md"
/>
</div>
</div>
<p className="text-center text-element-700">
<p className="text-center text-element-700 max-w-[300px] mx-auto">
By signing in, you agree to Dust's{" "}
<Link to={TERMS_OF_USE_URL} target="_blank" className="underline">
Terms of Use
Expand Down
5 changes: 4 additions & 1 deletion extension/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
"version": "0.0.1",
"description": "Get more done, faster, with the power of your assistants at your fingertips.",
"icons": {
"16": "images/AppIcon.png"
"16": "images/dust16.png",
"32": "images/dust32.png",
"48": "images/dust48.png",
"128": "images/dust128.png"
},
"background": {
"service_worker": "background.js"
Expand Down

0 comments on commit f7f016d

Please sign in to comment.