Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/appwrite/website into fix-i…
Browse files Browse the repository at this point in the history
…mprove-scss
  • Loading branch information
TorstenDittmann committed Nov 12, 2024
2 parents 3057d3f + c5068ff commit 083ead2
Show file tree
Hide file tree
Showing 25 changed files with 64 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/lib/components/FooterNav.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
Programs: [
{ label: 'Heroes', href: '/heroes' },
{ label: 'Startups', href: '/startups' },
{ label: 'Students', href: '/students' }
{ label: 'Education', href: '/education' }
],
About: [
{ label: 'Company', href: '/company' },
Expand Down
2 changes: 1 addition & 1 deletion src/markdoc/nodes/Th.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
style:width={width ? `${width}px` : undefined}
style:min-inline-size={width ? 'unset' : undefined}
role="columnheader"
class="py-[0.5625rem] px-3"
class="min-w-44 py-[0.5625rem] px-3"
{align}
>
<span class="text-sm leading-[1.375rem] text-[hsl(var(--web-color-primary))]">
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
layout: post
title: Announcing the Appwrite Education program in collaboration with GitHub
description: Appwrite partners up with GitHub for the Appwrite Education program. Together we enable future developers.
date: 2024-11-12
cover: /images/blog/education-program.png
timeToRead: 4
author: aditya-oberai
category: product
---

We’re excited to announce our newest initiative: the [Appwrite Education](https://appwrite.io/education) program. We’re partnering with GitHub for this new program to contribute to the future education of millions of developers connected to the [GitHub Student Developer Pack](https://education.github.com/pack).

# A new program to support future builders

The Appwrite Education program is the third program we are launching for a specific group of developers. With it, we want to provide an environment where students can learn to build with Appwrite without limitations.

# Partnering with GitHub

We’re partnering with GitHub Education as Appwrite will be included in the GitHub Student Developer Pack. What does this mean? The GitHub Student Developer Pack is a collection of free tools, software, and credits for students to help them learn and build projects. It’s designed to give students access to premium resources typically only available to professionals, and it’s part of GitHub’s commitment to supporting students in tech.

# Appwrite Pro for students

Appwrite will offer free access to Appwrite Pro to students who qualify for the Education program for the remainder of their time as students. This will allow you to use Appwrite Pro and build with all the features of a professional account.

# Benefits for students

- **Access to Appwrite tools**: Verified GitHub Education users will have free access to Appwrite’s robust backend-as-a-service platform, enabling them to build, manage, and deploy applications with ease.
- **Learning resources**: Students will benefit from comprehensive tutorials, guides, and resources provided by Appwrite, helping them to enhance their coding skills and practical knowledge.
- **Community engagement**: Join a vibrant community of developers and educators through GitHub Education’s Global Campus. Connect with peers, participate in events, and collaborate on projects using Appwrite’s platform.

# How to Get Started

To apply, you need to verify your academic status, typically using a .edu email address or a school-provided document. Once verified, you receive free access to all the resources in the pack, which can provide significant savings and make a wide array of industry-grade tools accessible.

Students can take advantage of these benefits by signing up for the GitHub Student Developer Pack and accessing Appwrite’s tools and resources. To learn more about how to join and make the most of this opportunity, visit the [GitHub Education](https://github.com/education) website and explore the Global Campus platform.

Learn more about the Appwrite Education program by visiting our [website](https://appwrite.io/education).
12 changes: 12 additions & 0 deletions src/routes/changelog/(entries)/2024-11-12.markdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
layout: changelog
title: Announcing the Appwrite Education program in collaboration with GitHub
date: 2024-11-12
cover: /images/changelog/2024-11-12.png
---

We’re excited to announce our newest initiative: the [Appwrite Education](https://appwrite.io/education) program. We’re partnering with GitHub for this new program to contribute to the future education of millions of developers connected to the [GitHub Student Developer Pack](https://education.github.com/pack).

{% arrow_link href="/blog/post/announcing-appwrite-education-program" %}
Read the announcement to learn more
{% /arrow_link %}
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ app.post('/login', async (req, res) => {
httpOnly: true,
secure: true,
sameSite: 'strict',
maxAge: sesion.expire
expires: new Date(session.expire),
path: '/',
});

Expand Down
4 changes: 2 additions & 2 deletions src/routes/docs/products/storage/quick-start/+page.markdoc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This allows anyone to create and read files in this bucket.

# Create file {% #create-file %}

To upload a file, add this to you web, Flutter, Apple, or Android app.
To upload a file, add this to your web, Flutter, Apple, or Android app.

{% multicode %}
```client-web
Expand Down Expand Up @@ -224,4 +224,4 @@ class MainActivity : AppCompatActivity() {
}
}
```
{% /multicode %}
{% /multicode %}
2 changes: 1 addition & 1 deletion src/routes/docs/quick-starts/sveltekit/+page.markdoc
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ You can skip optional steps.
Create a SvelteKit project.

```sh
npm create svelte@latest my-app && cd my-app && npm install
npx sv create
```
{% /section %}
{% section #step-3 step=3 title="Install Appwrite" %}
Expand Down
4 changes: 2 additions & 2 deletions src/routes/docs/tutorials/react/step-7/+page.markdoc
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,10 @@ function App() {
<Navbar /> {/* Add the navbar before page content */}
<main>{isLoginPage ? <Login /> : <Home />}</main>
</IdeasProvider>
<UserProvider>
</UserProvider>
</div>
);
}

export default App;
```
```
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import Kickstart from './(components)/Kickstart.svelte';
import Faq from './(components)/FAQ.svelte';
const title = 'Students' + TITLE_SUFFIX;
const title = 'Education' + TITLE_SUFFIX;
const description = DEFAULT_DESCRIPTION;
const ogImage = DEFAULT_HOST + '/images/open-graph/website.png';
</script>
Expand Down
5 changes: 5 additions & 0 deletions src/routes/students/+page.server.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { redirect } from '@sveltejs/kit';

export function load() {
redirect(301, '/education');
}
Binary file added static/images/blog/education-program.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 static/images/changelog/2024-11-12.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 083ead2

Please sign in to comment.