mirror of
https://github.com/WhoIsFishie/Fishie-Honesty-UI.git
synced 2025-07-07 15:46:35 +00:00
jacksmith is gay
This commit is contained in:
3
src/app.css
Normal file
3
src/app.css
Normal file
@ -0,0 +1,3 @@
|
||||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
12
src/app.html
Normal file
12
src/app.html
Normal 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" />
|
||||
%sveltekit.head%
|
||||
</head>
|
||||
<body data-sveltekit-preload-data="hover">
|
||||
<div style="display: contents">%sveltekit.body%</div>
|
||||
</body>
|
||||
</html>
|
7
src/index.test.js
Normal file
7
src/index.test.js
Normal file
@ -0,0 +1,7 @@
|
||||
import { describe, it, expect } from 'vitest';
|
||||
|
||||
describe('sum test', () => {
|
||||
it('adds 1 + 2 to equal 3', () => {
|
||||
expect(1 + 2).toBe(3);
|
||||
});
|
||||
});
|
5
src/routes/+layout.svelte
Normal file
5
src/routes/+layout.svelte
Normal file
@ -0,0 +1,5 @@
|
||||
<script>
|
||||
import "../app.css";
|
||||
</script>
|
||||
|
||||
<slot />
|
29
src/routes/+page.svelte
Normal file
29
src/routes/+page.svelte
Normal file
@ -0,0 +1,29 @@
|
||||
<script>
|
||||
// import {Icon} from '@iconify/svelte';
|
||||
// import {FaTelegramPlane} from 'svelte-icons/fa';
|
||||
</script>
|
||||
|
||||
<section>
|
||||
<div class="container">
|
||||
<div class="text-center my-40">
|
||||
<h1 class="text-3xl sm:text-4xl font-bold">Honesty</h1>
|
||||
<sub class="text-sm">By Fishie</sub>
|
||||
</div>
|
||||
</div>
|
||||
<div class="p-10 sm:p-20" />
|
||||
<div class="p-10" />
|
||||
|
||||
<footer class="container mx-auto">
|
||||
<div class="flex justify-center items-center">
|
||||
<button class="btn btn-error">
|
||||
<a href="">Login via Telegram</a>
|
||||
</button>
|
||||
</div>
|
||||
</footer>
|
||||
</section>
|
||||
|
||||
<!-- TODO:
|
||||
1. make it responsive
|
||||
2. decide font
|
||||
3. work on padding and Margins
|
||||
-->
|
5
src/routes/login/+layout.svelte
Normal file
5
src/routes/login/+layout.svelte
Normal file
@ -0,0 +1,5 @@
|
||||
<script>
|
||||
import '../app.css'
|
||||
</script>
|
||||
|
||||
<slot />
|
16
src/routes/login/+page.svelte
Normal file
16
src/routes/login/+page.svelte
Normal file
@ -0,0 +1,16 @@
|
||||
<style>
|
||||
.title{
|
||||
color: red;
|
||||
font-size: 20px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
|
||||
</script>
|
||||
|
||||
<div>
|
||||
<h1 class="title">
|
||||
hello page 1
|
||||
</h1>
|
||||
</div>
|
Reference in New Issue
Block a user