Skip to content

Commit 336da69

Browse files
committed
chore: update clients
1 parent 342903d commit 336da69

File tree

38 files changed

+204
-182
lines changed

38 files changed

+204
-182
lines changed

src/app.postcss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ body {
6666
}
6767

6868
.hoverable.hoverable-card {
69-
@apply relative flex grow flex-col opacity-100 overflow-clip;
69+
@apply relative flex grow flex-col overflow-clip opacity-100;
7070
}
7171

7272
.hoverable.hoverable-card:hover::before {
@@ -88,7 +88,7 @@ body {
8888
.hoverable.hoverable-card::after {
8989
/* Outline that shows regardless of hover state */
9090

91-
@apply z-[1] opacity-100 rounded-[inherit] border;
91+
@apply z-[1] rounded-[inherit] border opacity-100;
9292
border-image: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.4), transparent 40%);
9393
border-image-slice: 1;
9494

@@ -99,11 +99,11 @@ body {
9999
/* --border-radius: 0.5rem; */
100100
/* background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y), rgba(255, 255, 255, 0.4), transparent 40%); */
101101
/* mask-image: */
102-
/* linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1) calc(var(--border-radius) - 1px), rgba(0, 0, 0, 0) calc(var(--border-radius)), rgba(0, 0, 0, 0) 100%),
102+
/* linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1) calc(var(--border-radius) - 1px), rgba(0, 0, 0, 0) calc(var(--border-radius)), rgba(0, 0, 0, 0) 100%),
103103
linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1) calc(var(--border-radius) - 1px), rgba(0, 0, 0, 0) calc(var(--border-radius)), rgba(0, 0, 0, 0) 100%),
104104
linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1) calc(var(--border-radius) - 1px), rgba(0, 0, 0, 0) calc(var(--border-radius)), rgba(0, 0, 0, 0) 100%),
105105
linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 1) calc(var(--border-radius) - 1px), rgba(0, 0, 0, 0) calc(var(--border-radius)), rgba(0, 0, 0, 0) 100%), */
106106

107-
/* Round the inside corners */
108-
/* radial-gradient(circle at var(--border-radius) var(--border-radius), rgba(0, 0, 0, 1), rgba(0, 0, 0, 1) calc(var(--border-radius) - 1px), rgba(0, 0, 0, 0) calc(var(--border-radius)), rgba(0, 0, 0, 0) 100%); */
107+
/* Round the inside corners */
108+
/* radial-gradient(circle at var(--border-radius) var(--border-radius), rgba(0, 0, 0, 1), rgba(0, 0, 0, 1) calc(var(--border-radius) - 1px), rgba(0, 0, 0, 0) calc(var(--border-radius)), rgba(0, 0, 0, 0) 100%); */
109109
}

src/components/clients/ClientCallToAction.svelte

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
<!-- Avatar & Name -->
2121
<div class="flex flex-row items-center gap-4">
2222
{#if client.avatar}
23+
<!-- Darken the image -->
2324
<Image alt="{client.name} Avatar" maxWidth="5vw" picture={client.avatar} class="h-11 w-11 rounded-lg" />
2425
{/if}
2526

src/components/interactive/CallToAction.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<!-- Picture -->
1616
{#if picture}
1717
<Image {picture} class="h-full w-full object-cover object-top" alt="Cover" maxWidth={picMaxWidth} />
18-
<div class="absolute top-0 left-0 z-[1] h-full w-full bg-gradient-to-b from-transparent to-black/60" />
18+
<div class="absolute left-0 top-0 z-[1] h-full w-full bg-gradient-to-b from-transparent to-black/80" />
1919
{:else}
2020
<!-- Cool ass gradient instead -->
2121
<GradientBackground class="opacity-50" />

src/components/interactive/IconLink.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
{href}
88
target="_blank"
99
rel="noopener noreferrer"
10-
class="group flex flex-row items-center gap-2 rounded-full border-2 border-white/10 py-3 px-5 transition-all hover:border-white/25"
10+
class="group flex flex-row items-center gap-2 rounded-full border-2 border-white/10 px-5 py-3 transition-all hover:border-white/25"
1111
>
1212
<!-- TODO: Icon links -->
1313
<span class="{icon} h-4 w-4 fill-white" />

src/components/layout/NavBar.svelte

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
import Image from '$components/base/Image.svelte';
33
import { FEATURED_ARTIST } from '$lib/data/commissions';
44
import DesktopNavBar from './DesktopNavBar.svelte';
5-
6-
// Current page checker
75
</script>
86

97
<div class="flex h-24 border-b border-b-white/10">

src/lib/data/blog.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ import { importData } from '$lib/util/data';
33
import _ from 'lodash';
44
import type { Picture } from 'imagetools-core';
55

6-
// TODO: Add lodash
7-
86
// Expressions to match the files and extract the slug
97
const POST_REGEX = new RegExp(`./blog/(?<slug>[^/]+)/post.svx`);
108
const POST_METADATA_REGEX = new RegExp(`./blog/(?<slug>[^/]+)/meta.ts`);
9.13 KB
Loading
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import type { Client } from '$lib/data/clients';
2+
import avatar from './avatar.png?avatar';
3+
4+
// noinspection JSUnusedGlobalSymbols
5+
export default {
6+
name: 'Axolotl Studios',
7+
description: 'Implementation of a points and generator system for Skyblock.',
8+
9+
avatar,
10+
11+
start: 'Aug 2023',
12+
end: 'Sep 2023',
13+
14+
projects: [
15+
{
16+
name: 'Points',
17+
description:
18+
'A points system for Skyblock, which allows players to earn points by completing tasks and challenges. The points can be used to purchase items and other rewards. Integrates with other plugins with an API.',
19+
},
20+
{
21+
name: 'Generator',
22+
description: 'A generator system for Skyblock, which allows players to generate resources over time. Includes a management GUI.',
23+
},
24+
],
25+
} satisfies Client;
42.6 KB
Loading
614 KB
Loading

0 commit comments

Comments
 (0)