refactor: cleanup warnings
All checks were successful
create archive with lfs / tag (push) Successful in 5s
All checks were successful
create archive with lfs / tag (push) Successful in 5s
This commit is contained in:
parent
62fb94c311
commit
b4eadbe13a
@ -1,5 +1,5 @@
|
||||
import { env } from '$env/dynamic/private'
|
||||
import { Bot, Post } from "@skyware/bot";
|
||||
import { Bot, type Post } from "@skyware/bot";
|
||||
import { get, writable } from 'svelte/store'
|
||||
|
||||
const bskyClient = writable<null | Bot>(null)
|
||||
|
@ -1,7 +1,6 @@
|
||||
<script lang="ts">
|
||||
import { PUBLIC_BASE_URL } from '$env/static/public';
|
||||
import Note from '../components/note.svelte';
|
||||
import Tooltip from '../components/tooltip.svelte';
|
||||
import Window from '../components/window.svelte';
|
||||
import LatestStuff from './lateststuff.md';
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
import { PUBLIC_BASE_URL } from '$env/static/public';
|
||||
import Window from '../../components/window.svelte';
|
||||
import '../../styles/app.css';
|
||||
import { page } from '$app/stores';
|
||||
import { page } from '$app/state';
|
||||
|
||||
interface Props {
|
||||
title: any;
|
||||
@ -37,7 +37,7 @@
|
||||
<Window title="metadata" sticky>
|
||||
<div class="prose prose-ralsei">
|
||||
<ul>
|
||||
<link class="u-url" href="{PUBLIC_BASE_URL}{$page.url.pathname}" />
|
||||
<link class="u-url" href="{PUBLIC_BASE_URL}{page.url.pathname}" />
|
||||
<li>author: <a rel="author" class="p-author h-card" href={PUBLIC_BASE_URL}>dusk</a></li>
|
||||
<li>published on: <time class="dt-published" datetime="{date} 00:00:00">{date}</time></li>
|
||||
<li class="max-w-80 text-wrap">
|
||||
|
@ -9,12 +9,6 @@ excerpt = "photos from my trip to japan"
|
||||
export let data
|
||||
</script>
|
||||
|
||||
<style>
|
||||
picture {
|
||||
margin: 0 !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
## 1-16 / 09 / 2024
|
||||
|
||||
photos i took while on a japan trip
|
||||
@ -26,6 +20,6 @@ fixed!!!! i also added a few images because im dumb and forgot
|
||||
|
||||
<div class="grid gap-0.5 auto-rows-min md:grid-cols-4">
|
||||
{#each data.images as image}
|
||||
<a class="!animate-none" href={image.og}><img loading="lazy" width={480} height={480} src={image.thumb} class="w-full h-full object-cover [image-rendering:high-quality_!important]"/></a>
|
||||
<a class="!animate-none" href={image.og}><img loading="lazy" width={480} height={480} src={image.thumb} alt="from japan trip" class="w-full h-full object-cover [image-rendering:high-quality_!important]"/></a>
|
||||
{/each}
|
||||
</div>
|
@ -1,4 +1,4 @@
|
||||
import { getLastPosts, getUserPosts } from '$lib/bluesky.js';
|
||||
import { getLastPosts } from '$lib/bluesky.js';
|
||||
import { noteFromBskyPost } from '../../components/note.svelte';
|
||||
|
||||
export const load = async ({ }) => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user