Initial commit for CI pipeline test.

This commit is contained in:
2025-03-11 10:18:15 -05:00
commit 1dd8c8b623
19 changed files with 2663 additions and 0 deletions

23
src/app.css Normal file
View File

@@ -0,0 +1,23 @@
@import 'tailwindcss';
@import '@fontsource/noto-sans-symbols/400.css';
@import '@fontsource/noto-sans-symbols/700.css';
:root {
--seafoam: 131, 255, 205;
--skyblue: 136, 213, 254;
--green: 96, 179, 105;
}
@theme {
--color-seafoam: rgb(var(--seafoam));
--color-skyblue: rgb(var(--skyblue));
--color-green: rgb(var(--green));
--font-noto: 'Noto Sans Symbols', sans-serif;
}
body {
height: 100vh;
background-image: linear-gradient(to bottom, rgb(var(--skyblue)) 0px, rgb(var(--seafoam)) 800px);
}

13
src/app.d.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
// See https://svelte.dev/docs/kit/types#app.d.ts
// for information about these interfaces
declare global {
namespace App {
// interface Error {}
// interface Locals {}
// interface PageData {}
// interface PageState {}
// interface Platform {}
}
}
export {};

12
src/app.html Normal file
View File

@@ -0,0 +1,12 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
%sveltekit.head%
</head>
<body data-sveltekit-preload-data="hover">
<div style="display: contents">%sveltekit.body%</div>
</body>
</html>

1
src/lib/index.ts Normal file
View File

@@ -0,0 +1 @@
// place files you want to import through the `$lib` alias in this folder.

View File

@@ -0,0 +1,8 @@
<script lang="ts">
import '../app.css';
let { children } = $props();
</script>
<div class="p-4">
{@render children()}
</div>

1
src/routes/+layout.ts Normal file
View File

@@ -0,0 +1 @@
export const prerender = true;

5
src/routes/+page.svelte Normal file
View File

@@ -0,0 +1,5 @@
<main class="flex flex-col gap-2 p-4 w-full">
<div class="p-4 flex flex-col justify-center items-center bg-white/50 rounded-md">
<h1 class="text-green font-noto font-bold">Harbormaster Client</h1>
</div>
</main>