Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/cloud beta card #421

Merged
merged 28 commits into from
Apr 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
297f5f2
Add GitHub OAuth
Meldiron Apr 19, 2023
94e3060
feat: add cloud beta card page
TGlide Apr 21, 2023
cd4649f
refactor: beta card adjustments & light mode
TGlide Apr 24, 2023
7fd8d0a
feat: responsive
TGlide Apr 24, 2023
1575995
refactor: change cloud-beta-card root dir
TGlide Apr 24, 2023
78452a0
fix: cloud beta card route
TGlide Apr 24, 2023
4f1fd88
Merge remote-tracking branch 'origin/feat-oauth' into feat/cloud-beta…
TGlide Apr 26, 2023
9b7369b
feat: get cloud cards from backend
TGlide Apr 26, 2023
3ba6275
feat: beta signup page desktop
TGlide Apr 26, 2023
df43167
feat: floating signup clouds
TGlide Apr 26, 2023
acccfb0
feat: cloud signup page
TGlide Apr 26, 2023
a54ac16
feat: style github link
TGlide Apr 27, 2023
032d301
feat: claim your card btn
TGlide Apr 27, 2023
61de491
refactor: header animation
TGlide Apr 27, 2023
177c528
refactor(wip): card routes
TGlide Apr 28, 2023
71147c6
feat: shareable card link
TGlide Apr 28, 2023
32b2fab
feat: embed cloud card code
TGlide Apr 28, 2023
186a4ca
feat: tweet it btn
TGlide Apr 28, 2023
1083624
fix: light theme stuff
TGlide Apr 28, 2023
b4cf8a1
refactor: prefers reduced motion
TGlide Apr 28, 2023
8c41e93
chore: force redeploy
TGlide Apr 28, 2023
dca8acf
refactor: small changes
TGlide Apr 28, 2023
722ce7b
feat: github btn styling
TGlide Apr 28, 2023
a07a788
chore: force redeploy
TGlide Apr 28, 2023
fa43e28
fix: GitHub naming
TGlide Apr 28, 2023
6a073a9
feat: card seo
TGlide Apr 28, 2023
811716d
chore: remove mocked card
TGlide Apr 28, 2023
5017dbb
fix: seo
TGlide Apr 28, 2023
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
6 changes: 6 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
"logrocket": "^3.0.1",
"pretty-bytes": "^6.1.0",
"prismjs": "^1.29.0",
"svelte-confetti": "^1.2.2",
"tippy.js": "^6.3.7",
"web-vitals": "^3.1.1"
},
Expand Down
17 changes: 17 additions & 0 deletions src/lib/elements/forms/button.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

export let submit = false;
export let secondary = false;
export let github = false;
export let text = false;
export let danger = false;
export let disabled = false;
Expand Down Expand Up @@ -38,6 +39,7 @@
class="button"
class:is-only-icon={round}
class:is-secondary={secondary}
class:is-github={github}
class:is-text={text}
class:is-danger={danger}
class:is-full-width={fullWidth}
Expand All @@ -53,6 +55,7 @@
class="button"
class:is-only-icon={round}
class:is-secondary={secondary}
class:is-github={github}
class:is-danger={danger}
class:is-text={text}
class:is-full-width={fullWidth}
Expand All @@ -62,3 +65,17 @@
<slot />
</button>
{/if}

<style lang="scss">
.is-github {
background-color: #373b4d;

&:hover {
background-color: lighten($color: #373b4d, $amount: 2.5);
}

&:active {
background-color: darken($color: #373b4d, $amount: 5);
}
}
</style>
22 changes: 22 additions & 0 deletions src/lib/images/appwrite-cloud.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions src/lib/images/login/cloud-1.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions src/lib/images/login/cloud-2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading