Add sorting to Quick Links

This commit is contained in:
Fred Boniface
2023-07-24 11:35:27 +01:00
parent 69949fb8f4
commit 2ffa3510ee
5 changed files with 16 additions and 19 deletions

View File

@@ -1,12 +1,9 @@
<script>
<script lang="ts">
import { welcome } from '$lib/stores/welcome';
import { fade } from 'svelte/transition';
import { version } from '$lib/stores/version';
const variables = {
title: 'Welcome to OwlBoard'
};
let pageNum = 0;
let pageNum: number = 0;
function pageUp() {
pageNum++;
@@ -22,7 +19,7 @@
welcome.set(version);
}
const pageText = [
const pageText: string[] = [
'<h3>A brand new look</h3>' +
"<p>OwlBoard has a brand new look, making it even faster for you to access the data - you won't have to register again.</p>" +
"<p><strong>Live station data</strong> is still available right from the homepage. If you are signed up, you'll get improved data from the <strong>Staff board</strong>. Bus and Ferry services are still included</p>" +