Skip to content

Commit

Permalink
Update content + links
Browse files Browse the repository at this point in the history
  • Loading branch information
adityaoberai committed Nov 4, 2024
1 parent de48daf commit f8bdedf
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
12 changes: 6 additions & 6 deletions src/routes/students/(components)/FAQ.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,28 +8,28 @@
answer: string;
}> = [
{
question: 'What is the Appwrite Student Program?',
question: 'What is the Appwrite Education Program?',
answer: "If you're a student with the GitHub Student Developer Pack, you can use Appwrite Pro for free while in school to help you build your next project."
},
{
question: 'Who is eligible to apply?',
answer: 'Any student enrolled in the GitHub Student Developer Pack can apply for free and receive Appwrite Pro until graudation.'
answer: 'Any student enrolled in the GitHub Student Developer Pack can apply for free and receive Appwrite Pro until graduation.'
},
{
question: 'How do I apply?',
answer: "If you're already a GitHub student, click the 'Sign up' button on this page and fill in your details. If you're not signed up with GitHub yet, first enroll in the GitHub Student Developer Pack, then come back and sign up to Appwrite Cloud here."
answer: "If you're already enrolled in the GitHub Student Developer Pack, click the 'Sign up' button on this page and fill in your details. If you're not enrolled with GitHub Education yet, first apply for the GitHub Student Developer Pack, then come back and sign up to Appwrite Cloud here."
},
{
question: 'What happens after I sign up?',
answer: 'Appwrite Cloud will automatically verify your GitHub student account and apply the 250$ Cloud credits to your account. You can then start using Appwrite right away.'
answer: 'Appwrite Cloud will automatically verify your GitHub Student Developer Pack membership and apply Appwrite Pro to your account. You can then start using Appwrite right away.'
},
{
question: "I'm already an Appwrite user. Can I still apply?",
answer: 'This program is only open to new users.'
},
{
question: 'How long is my credit valid for?',
answer: 'Your credits can be used until you finish your studies.'
question: 'How long do the Appwrite Education program benefits last?',
answer: 'Your access to Appwrite Pro is valid until you finish your studies and graduate from the GitHub Student Developer Pack.'
},
{
question: 'Do Cloud credits include any add-ons?',
Expand Down
8 changes: 6 additions & 2 deletions src/routes/students/(components)/GetStarted.svelte
Original file line number Diff line number Diff line change
@@ -1,18 +1,22 @@
<script lang="ts">
import Badge from '$lib/components/ui/Badge.svelte';
import { classNames } from '$lib/utils/classnames';
import { PUBLIC_APPWRITE_DASHBOARD } from '$env/static/public';
const educationSignUp = `${PUBLIC_APPWRITE_DASHBOARD}/console/education`;
const items = [
{
label: 'Enroll to the GitHub Student Developer Pack',
description: 'Sign up for the Student Developer pack and explore the benefits.',
cta: { url: 'https://github.com', label: 'Enroll on GitHub Education', icon: 'github' }
cta: { url: 'https://github.com/education', label: 'Enroll on GitHub Education', icon: 'github' }
},
{
label: 'Redeem your Cloud credits',
description:
'Create your Appwrite account and add a valid payment method. Once verified, your credits will be applied.',
cta: { url: 'https://github.com', label: 'Sign up' }
cta: { url: educationSignUp, label: 'Sign up' }
},
{
label: 'Start from our docs',
Expand Down
4 changes: 3 additions & 1 deletion src/routes/students/(components)/Hero.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@
icon: ChatIcon
}
];
const educationSignUp = `${PUBLIC_APPWRITE_DASHBOARD}/console/education`;
</script>

<section
Expand All @@ -45,7 +47,7 @@
</p>

<div class="flex w-full flex-col items-center justify-center gap-4 md:flex-row">
<a class="web-button !w-full md:!w-fit" href={PUBLIC_APPWRITE_DASHBOARD}>Sign up now</a>
<a class="web-button !w-full md:!w-fit" href={educationSignUp}>Sign up now</a>
<a
class="web-button is-secondary !w-full !whitespace-normal md:!w-fit"
href="https://github.com/education"
Expand Down

0 comments on commit f8bdedf

Please sign in to comment.