jacksmith is gay

This commit is contained in:
2023-04-06 10:24:33 +05:00
parent f5f05c1908
commit 54f76891d3
25 changed files with 5126 additions and 5133 deletions

3
src/app.css Normal file
View File

@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

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" />
%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
View 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);
});
});

View File

@ -0,0 +1,5 @@
<script>
import "../app.css";
</script>
<slot />

29
src/routes/+page.svelte Normal file
View 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
-->

View File

@ -0,0 +1,5 @@
<script>
import '../app.css'
</script>
<slot />

View File

@ -0,0 +1,16 @@
<style>
.title{
color: red;
font-size: 20px;
}
</style>
<script>
</script>
<div>
<h1 class="title">
hello page 1
</h1>
</div>