mirror of
https://github.com/LukeHagar/website.git
synced 2025-12-07 21:07:44 +00:00
update: github repo link.
This commit is contained in:
@@ -2,7 +2,7 @@
|
|||||||
import { toScale, type Scale } from '$lib/utils/toScale';
|
import { toScale, type Scale } from '$lib/utils/toScale';
|
||||||
import { spring, type AnimationListOptions, type SpringOptions } from 'motion';
|
import { spring, type AnimationListOptions, type SpringOptions } from 'motion';
|
||||||
import { animation, createScrollHandler, scroll, type Animation } from '.';
|
import { animation, createScrollHandler, scroll, type Animation } from '.';
|
||||||
import { GITHUB_STARS } from '$lib/constants';
|
import { GITHUB_REPO_LINK, GITHUB_STARS } from '$lib/constants';
|
||||||
|
|
||||||
const springOptions: SpringOptions = {
|
const springOptions: SpringOptions = {
|
||||||
stiffness: 58.78,
|
stiffness: 58.78,
|
||||||
@@ -199,7 +199,7 @@
|
|||||||
<a
|
<a
|
||||||
class="web-card is-white web-u-min-block-size-320 oss-card flex flex-col"
|
class="web-card is-white web-u-min-block-size-320 oss-card flex flex-col"
|
||||||
id="oss-github"
|
id="oss-github"
|
||||||
href="https://github.com/appwrite/appwrite"
|
href="{GITHUB_REPO_LINK}"
|
||||||
>
|
>
|
||||||
<div class="flex flex-col justify-between gap-8">
|
<div class="flex flex-col justify-between gap-8">
|
||||||
<span
|
<span
|
||||||
@@ -246,7 +246,7 @@
|
|||||||
<a
|
<a
|
||||||
class="web-card is-white web-u-min-block-size-320 oss-card flex flex-col"
|
class="web-card is-white web-u-min-block-size-320 oss-card flex flex-col"
|
||||||
id="oss-commits"
|
id="oss-commits"
|
||||||
href="https://github.com/appwrite/appwrite"
|
href="{GITHUB_REPO_LINK}"
|
||||||
>
|
>
|
||||||
<div class="flex flex-col justify-between gap-8">
|
<div class="flex flex-col justify-between gap-8">
|
||||||
<span
|
<span
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { afterNavigate } from '$app/navigation';
|
import { afterNavigate } from '$app/navigation';
|
||||||
import { IsLoggedIn } from '$lib/components';
|
import { IsLoggedIn } from '$lib/components';
|
||||||
import { GITHUB_STARS } from '$lib/constants';
|
import { GITHUB_REPO_LINK, GITHUB_STARS } from '$lib/constants';
|
||||||
import type { NavLink } from '$lib/layouts/Main.svelte';
|
import type { NavLink } from '$lib/layouts/Main.svelte';
|
||||||
|
|
||||||
export let open = false;
|
export let open = false;
|
||||||
@@ -37,7 +37,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="web-side-nav-mobile-footer-buttons">
|
<div class="web-side-nav-mobile-footer-buttons">
|
||||||
<a
|
<a
|
||||||
href="https://github.com/appwrite/appwrite/stargazers"
|
href="{GITHUB_REPO_LINK}"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
class="web-button is-text web-u-inline-width-100-percent-mobile"
|
class="web-button is-text web-u-inline-width-100-percent-mobile"
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
export const GITHUB_STARS = '43.6K';
|
export const GITHUB_STARS = '43.9K';
|
||||||
|
export const GITHUB_REPO_LINK = 'https://github.com/appwrite/appwrite';
|
||||||
export const BANNER_KEY: Banners = 'discord-banner-01'; // Change key to force banner to show again
|
export const BANNER_KEY: Banners = 'discord-banner-01'; // Change key to force banner to show again
|
||||||
export const SENTRY_DSN =
|
export const SENTRY_DSN =
|
||||||
'https://27d41dc8bb67b596f137924ab8599e59@o1063647.ingest.us.sentry.io/4507497727000576';
|
'https://27d41dc8bb67b596f137924ab8599e59@o1063647.ingest.us.sentry.io/4507497727000576';
|
||||||
|
|||||||
@@ -41,7 +41,7 @@
|
|||||||
import { Search, IsLoggedIn } from '$lib/components';
|
import { Search, IsLoggedIn } from '$lib/components';
|
||||||
import { isMac } from '$lib/utils/platform';
|
import { isMac } from '$lib/utils/platform';
|
||||||
import { getContext, setContext } from 'svelte';
|
import { getContext, setContext } from 'svelte';
|
||||||
import { GITHUB_STARS } from '$lib/constants';
|
import { GITHUB_REPO_LINK, GITHUB_STARS } from '$lib/constants';
|
||||||
import { PUBLIC_APPWRITE_DASHBOARD } from '$env/static/public';
|
import { PUBLIC_APPWRITE_DASHBOARD } from '$env/static/public';
|
||||||
|
|
||||||
export let variant: DocsLayoutVariant = 'default';
|
export let variant: DocsLayoutVariant = 'default';
|
||||||
@@ -167,7 +167,7 @@
|
|||||||
<div class="web-main-header-end">
|
<div class="web-main-header-end">
|
||||||
<div class="flex gap-2">
|
<div class="flex gap-2">
|
||||||
<a
|
<a
|
||||||
href="https://github.com/appwrite/appwrite/stargazers"
|
href="{GITHUB_REPO_LINK}"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
class="web-button is-text"
|
class="web-button is-text"
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { browser } from '$app/environment';
|
import { browser } from '$app/environment';
|
||||||
import { MobileNav, IsLoggedIn } from '$lib/components';
|
import { MobileNav, IsLoggedIn } from '$lib/components';
|
||||||
import { BANNER_KEY, GITHUB_STARS } from '$lib/constants';
|
import { BANNER_KEY, GITHUB_REPO_LINK, GITHUB_STARS } from '$lib/constants';
|
||||||
import { isVisible } from '$lib/utils/isVisible';
|
import { isVisible } from '$lib/utils/isVisible';
|
||||||
import { createScrollInfo } from '$lib/utils/scroll';
|
import { createScrollInfo } from '$lib/utils/scroll';
|
||||||
import { hasNewChangelog } from '$routes/changelog/utils';
|
import { hasNewChangelog } from '$routes/changelog/utils';
|
||||||
@@ -258,7 +258,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="web-main-header-end">
|
<div class="web-main-header-end">
|
||||||
<a
|
<a
|
||||||
href="https://github.com/appwrite/appwrite/stargazers"
|
href="{GITHUB_REPO_LINK}"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
class="web-button is-text web-u-inline-width-100-percent-mobile"
|
class="web-button is-text web-u-inline-width-100-percent-mobile"
|
||||||
|
|||||||
@@ -22,7 +22,7 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { clickOutside } from '$lib/actions/clickOutside';
|
import { clickOutside } from '$lib/actions/clickOutside';
|
||||||
import { Tooltip, IsLoggedIn } from '$lib/components';
|
import { Tooltip, IsLoggedIn } from '$lib/components';
|
||||||
import { GITHUB_STARS } from '$lib/constants';
|
import { GITHUB_REPO_LINK, GITHUB_STARS } from '$lib/constants';
|
||||||
import { layoutState, toggleSidenav } from './Docs.svelte';
|
import { layoutState, toggleSidenav } from './Docs.svelte';
|
||||||
import SidebarNavButton from './SidebarNavButton.svelte';
|
import SidebarNavButton from './SidebarNavButton.svelte';
|
||||||
|
|
||||||
@@ -115,7 +115,7 @@
|
|||||||
<IsLoggedIn />
|
<IsLoggedIn />
|
||||||
|
|
||||||
<a
|
<a
|
||||||
href="https://github.com/appwrite/appwrite/stargazers"
|
href="{GITHUB_REPO_LINK}"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
class="web-button is-text web-u-inline-width-100-percent-mobile"
|
class="web-button is-text web-u-inline-width-100-percent-mobile"
|
||||||
|
|||||||
@@ -50,7 +50,7 @@
|
|||||||
import MetricCard from '$lib/components/MetricCard.svelte';
|
import MetricCard from '$lib/components/MetricCard.svelte';
|
||||||
import { newsletter } from '$lib/components/Newsletter.svelte';
|
import { newsletter } from '$lib/components/Newsletter.svelte';
|
||||||
import PreFooter from '$lib/components/PreFooter.svelte';
|
import PreFooter from '$lib/components/PreFooter.svelte';
|
||||||
import { GITHUB_STARS } from '$lib/constants';
|
import { GITHUB_REPO_LINK, GITHUB_STARS } from '$lib/constants';
|
||||||
import { Main } from '$lib/layouts';
|
import { Main } from '$lib/layouts';
|
||||||
import { DEFAULT_HOST } from '$lib/utils/metadata';
|
import { DEFAULT_HOST } from '$lib/utils/metadata';
|
||||||
import { TITLE_SUFFIX } from '$routes/titles';
|
import { TITLE_SUFFIX } from '$routes/titles';
|
||||||
@@ -178,7 +178,7 @@
|
|||||||
<span class="text">Join our Discord</span>
|
<span class="text">Join our Discord</span>
|
||||||
</a>
|
</a>
|
||||||
<a
|
<a
|
||||||
href="https://github.com/appwrite/appwrite/stargazers"
|
href="{GITHUB_REPO_LINK}"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
class="web-button is-secondary is-full-width-mobile"
|
class="web-button is-secondary is-full-width-mobile"
|
||||||
@@ -238,7 +238,7 @@
|
|||||||
</p>
|
</p>
|
||||||
<div class="mt-8 flex flex-wrap justify-center gap-3">
|
<div class="mt-8 flex flex-wrap justify-center gap-3">
|
||||||
<a
|
<a
|
||||||
href="https://github.com/appwrite/appwrite/graphs/contributors"
|
href="{GITHUB_REPO_LINK}/graphs/contributors"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
class="web-button is-secondary is-full-width-mobile"
|
class="web-button is-secondary is-full-width-mobile"
|
||||||
@@ -278,7 +278,7 @@
|
|||||||
Anyone can join and help Appwrite become better.
|
Anyone can join and help Appwrite become better.
|
||||||
</p>
|
</p>
|
||||||
<a
|
<a
|
||||||
href="https://github.com/appwrite/appwrite/issues"
|
href="{GITHUB_REPO_LINK}/issues"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
class="web-button is-secondary mt-8"
|
class="web-button is-secondary mt-8"
|
||||||
@@ -527,7 +527,7 @@
|
|||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<a
|
<a
|
||||||
href="https://github.com/appwrite/appwrite"
|
href="{GITHUB_REPO_LINK}"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
class="web-card is-white web-u-min-block-size-320 flex flex-col"
|
class="web-card is-white web-u-min-block-size-320 flex flex-col"
|
||||||
|
|||||||
Reference in New Issue
Block a user