Skip to content

Commit

Permalink
Merge branch 'v2' of github.com:syntaxfm/website into v2
Browse files Browse the repository at this point in the history
  • Loading branch information
stolinski committed Oct 20, 2023
2 parents f164095 + 1652cde commit b9c4e0a
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 0 deletions.
Binary file added src/assets/under-construction.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
29 changes: 29 additions & 0 deletions src/lib/UnderConstruction.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<script lang="ts">
import underConstruction from '$assets/under-construction.gif';
</script>

<div>
<img src={underConstruction} alt="Cute lil digger on a under construction sign" />
<p>
New site, mind the dust! Please <a href="https://github.com/syntaxfm/website/issues"
>log any issues or suggestions</a
>
</p>
</div>

<style lang="postcss">
div {
color: var(--white);
display: flex;
gap: 20px;
align-items: center;
justify-content: center;
}
img {
height: 30px;
filter: sepia(99%) saturate(1726%) hue-rotate(323deg);
}
p {
font-size: var(--font-size-sm);
}
</style>
3 changes: 3 additions & 0 deletions src/routes/(site)/+layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
import ThemeMaker from '../../params/ThemeMaker.svelte';
import { page } from '$app/stores';
import PageLoadingIndicator from '$lib/page_loading_indicator.svelte';
import UnderConstruction from '$lib/UnderConstruction.svelte';
export let data;
$: ({ user, user_theme } = data);
Expand All @@ -36,7 +37,9 @@
<Meta />

<PageLoadingIndicator />

<div class={'theme-' + ($theme || user_theme) + ' theme-wrapper'} class:debug={$debug_mode}>
<UnderConstruction />
{#if $page.url.pathname !== '/'}
<Header />
{/if}
Expand Down

1 comment on commit b9c4e0a

@vercel
Copy link

@vercel vercel bot commented on b9c4e0a Oct 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

syntax-website-v2 – ./

syntax-website-v2-syntax.vercel.app
syntax-website-v2-git-v2-syntax.vercel.app
beta.syntax.fm

Please sign in to comment.