You've already forked AstralRinth
forked from didirus/AstralRinth
GUI initial commit
This commit is contained in:
13
theseus_gui/src/app.d.ts
vendored
Normal file
13
theseus_gui/src/app.d.ts
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
/// <reference types="@sveltejs/kit" />
|
||||
|
||||
// See https://kit.svelte.dev/docs/typescript
|
||||
// for information about these interfaces
|
||||
declare namespace App {
|
||||
interface Locals {}
|
||||
|
||||
interface Platform {}
|
||||
|
||||
interface Session {}
|
||||
|
||||
interface Stuff {}
|
||||
}
|
||||
11
theseus_gui/src/app.html
Normal file
11
theseus_gui/src/app.html
Normal file
@@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
%svelte.head%
|
||||
</head>
|
||||
<body>
|
||||
<div>%svelte.body%</div>
|
||||
</body>
|
||||
</html>
|
||||
11
theseus_gui/src/routes/__layout.svelte
Normal file
11
theseus_gui/src/routes/__layout.svelte
Normal file
@@ -0,0 +1,11 @@
|
||||
<script lang="ts">
|
||||
|
||||
</script>
|
||||
|
||||
<main>
|
||||
<slot />
|
||||
</main>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
9
theseus_gui/src/routes/index.svelte
Normal file
9
theseus_gui/src/routes/index.svelte
Normal file
@@ -0,0 +1,9 @@
|
||||
<script lang="ts">
|
||||
|
||||
</script>
|
||||
|
||||
<h1>Modrinth</h1>
|
||||
|
||||
<style>
|
||||
|
||||
</style>
|
||||
Reference in New Issue
Block a user