40 lines
1.3 KiB
Svelte
40 lines
1.3 KiB
Svelte
<script lang="ts">
|
|
import Content from "$lib/viewport/content.svelte";
|
|
import ImageGallery, {
|
|
type GalleryImage,
|
|
} from "$lib/lists/image-gallery.svelte";
|
|
|
|
let i: GalleryImage[] = [
|
|
{
|
|
src: "/projects/projectn5/devlog/2025/0523/birds_eye.webp",
|
|
alt: "gawk",
|
|
desc: "gawk gawk gawk longer text lmao asdf gawk gawk gawk longer text lmao asdf gawk gawk gawk longer text aasdf asalmao asdf gawk gvxcvawk gawk longer text lmao avxvsdf gawk gawk gawk lxvxonger text lmao at lmao asdf gawk gawk gawk longer text lmao asdf gawk gawk gawk longer text aasdf asalmao asdf gawk gvxcvawk gawk longer text lmao avxvsdf gawk gawk gawk lxvxonger text lmao asdf",
|
|
},
|
|
{
|
|
src: "/blog/robert.webp",
|
|
alt: "ROOOOBEEERT",
|
|
desc: "ROOOOBEEERT",
|
|
},
|
|
{
|
|
src: "/blog/2026/0208/sadstick.webp",
|
|
alt: ":(",
|
|
desc: ":(",
|
|
},
|
|
{
|
|
src: "/art/drawings/2026/0310.webp",
|
|
alt: "girl",
|
|
desc: "girl girl girl girl girlgirlgirl vgirl",
|
|
},
|
|
];
|
|
</script>
|
|
|
|
<Content>
|
|
<h1>TEST</h1>
|
|
|
|
test page go brr
|
|
|
|
<ImageGallery images={i} />
|
|
|
|
the preceding element was a cool new gallery component
|
|
</Content>
|