mirror of
https://github.com/LukeHagar/website.git
synced 2025-12-09 12:57:48 +00:00
update: github repo link.
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
import { toScale, type Scale } from '$lib/utils/toScale';
|
||||
import { spring, type AnimationListOptions, type SpringOptions } from 'motion';
|
||||
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 = {
|
||||
stiffness: 58.78,
|
||||
@@ -199,7 +199,7 @@
|
||||
<a
|
||||
class="web-card is-white web-u-min-block-size-320 oss-card flex flex-col"
|
||||
id="oss-github"
|
||||
href="https://github.com/appwrite/appwrite"
|
||||
href="{GITHUB_REPO_LINK}"
|
||||
>
|
||||
<div class="flex flex-col justify-between gap-8">
|
||||
<span
|
||||
@@ -246,7 +246,7 @@
|
||||
<a
|
||||
class="web-card is-white web-u-min-block-size-320 oss-card flex flex-col"
|
||||
id="oss-commits"
|
||||
href="https://github.com/appwrite/appwrite"
|
||||
href="{GITHUB_REPO_LINK}"
|
||||
>
|
||||
<div class="flex flex-col justify-between gap-8">
|
||||
<span
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import { afterNavigate } from '$app/navigation';
|
||||
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';
|
||||
|
||||
export let open = false;
|
||||
@@ -37,7 +37,7 @@
|
||||
</div>
|
||||
<div class="web-side-nav-mobile-footer-buttons">
|
||||
<a
|
||||
href="https://github.com/appwrite/appwrite/stargazers"
|
||||
href="{GITHUB_REPO_LINK}"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
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 SENTRY_DSN =
|
||||
'https://27d41dc8bb67b596f137924ab8599e59@o1063647.ingest.us.sentry.io/4507497727000576';
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
import { Search, IsLoggedIn } from '$lib/components';
|
||||
import { isMac } from '$lib/utils/platform';
|
||||
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';
|
||||
|
||||
export let variant: DocsLayoutVariant = 'default';
|
||||
@@ -167,7 +167,7 @@
|
||||
<div class="web-main-header-end">
|
||||
<div class="flex gap-2">
|
||||
<a
|
||||
href="https://github.com/appwrite/appwrite/stargazers"
|
||||
href="{GITHUB_REPO_LINK}"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
class="web-button is-text"
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
<script lang="ts">
|
||||
import { browser } from '$app/environment';
|
||||
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 { createScrollInfo } from '$lib/utils/scroll';
|
||||
import { hasNewChangelog } from '$routes/changelog/utils';
|
||||
@@ -258,7 +258,7 @@
|
||||
</div>
|
||||
<div class="web-main-header-end">
|
||||
<a
|
||||
href="https://github.com/appwrite/appwrite/stargazers"
|
||||
href="{GITHUB_REPO_LINK}"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
class="web-button is-text web-u-inline-width-100-percent-mobile"
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
<script lang="ts">
|
||||
import { clickOutside } from '$lib/actions/clickOutside';
|
||||
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 SidebarNavButton from './SidebarNavButton.svelte';
|
||||
|
||||
@@ -115,7 +115,7 @@
|
||||
<IsLoggedIn />
|
||||
|
||||
<a
|
||||
href="https://github.com/appwrite/appwrite/stargazers"
|
||||
href="{GITHUB_REPO_LINK}"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
class="web-button is-text web-u-inline-width-100-percent-mobile"
|
||||
|
||||
@@ -50,7 +50,7 @@
|
||||
import MetricCard from '$lib/components/MetricCard.svelte';
|
||||
import { newsletter } from '$lib/components/Newsletter.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 { DEFAULT_HOST } from '$lib/utils/metadata';
|
||||
import { TITLE_SUFFIX } from '$routes/titles';
|
||||
@@ -178,7 +178,7 @@
|
||||
<span class="text">Join our Discord</span>
|
||||
</a>
|
||||
<a
|
||||
href="https://github.com/appwrite/appwrite/stargazers"
|
||||
href="{GITHUB_REPO_LINK}"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
class="web-button is-secondary is-full-width-mobile"
|
||||
@@ -238,7 +238,7 @@
|
||||
</p>
|
||||
<div class="mt-8 flex flex-wrap justify-center gap-3">
|
||||
<a
|
||||
href="https://github.com/appwrite/appwrite/graphs/contributors"
|
||||
href="{GITHUB_REPO_LINK}/graphs/contributors"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
class="web-button is-secondary is-full-width-mobile"
|
||||
@@ -278,7 +278,7 @@
|
||||
Anyone can join and help Appwrite become better.
|
||||
</p>
|
||||
<a
|
||||
href="https://github.com/appwrite/appwrite/issues"
|
||||
href="{GITHUB_REPO_LINK}/issues"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
class="web-button is-secondary mt-8"
|
||||
@@ -527,7 +527,7 @@
|
||||
</li>
|
||||
<li>
|
||||
<a
|
||||
href="https://github.com/appwrite/appwrite"
|
||||
href="{GITHUB_REPO_LINK}"
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
class="web-card is-white web-u-min-block-size-320 flex flex-col"
|
||||
|
||||
Reference in New Issue
Block a user