Skip to content

Commit

Permalink
Update dataset URLs in +page.svelte
Browse files Browse the repository at this point in the history
  • Loading branch information
ctwhome committed Mar 14, 2024
1 parent 967ae45 commit ee74f89
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
<script lang="ts">
import { goto } from '$app/navigation';
import { base } from '$app/paths';
import logos from '$lib/assets/images/logos.webp';
const datasets = [
// {
// title: 'Dataset 1 (80MB)',
// description: 'If a dog chews shoes whose shoes does he choose?',
// image: '/images/cover.webp',
// image: `${base}/images/cover.webp`,
// url: 'https://s3.ctwhome.com/ruisdael/data/ql.zarr'
// },
// {
// title: 'Dataset 2 (300MB)',
// description: 'If a dog chews shoes whose shoes does he choose?',
// image: '/images/cover.webp',
// image: `${base}/images/cover.webp`,
// url: 'https://s3.ctwhome.com/ruisdael/data/animated-data/ql.zarr'
// },
{
title: 'Dataset with Rain 3 (600MB)',
description: 'Rain and clouds',
image: '/images/cover.webp',
image: `${base}/images/cover.webp`,
url: 'http://localhost:5173/data/movie.zarr'
}
];
Expand Down

0 comments on commit ee74f89

Please sign in to comment.