|
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 9.0 KiB |
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 8.5 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 8.5 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.6 KiB |
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 15 KiB |
|
Before Width: | Height: | Size: 6.5 KiB After Width: | Height: | Size: 7.3 KiB |
|
Before Width: | Height: | Size: 7.1 KiB After Width: | Height: | Size: 8.2 KiB |
@ -0,0 +1,13 @@
@@ -0,0 +1,13 @@
|
||||
<script lang="ts"> |
||||
export let no_wrap: boolean = false; |
||||
</script> |
||||
|
||||
<div class="mx-auto lg:container"> |
||||
{#if no_wrap} |
||||
<slot /> |
||||
{:else} |
||||
<div class="px-3"> |
||||
<slot /> |
||||
</div> |
||||
{/if} |
||||
</div> |
||||
@ -1,23 +1,27 @@
@@ -1,23 +1,27 @@
|
||||
<script lang="ts"> |
||||
import Container from "./Container.svelte"; |
||||
|
||||
export let nip07plugin: boolean = false; |
||||
</script> |
||||
|
||||
<div class="bg-neutral"> |
||||
<div class="mx-auto lg:container bg-neutral"> |
||||
<div class="bg-base-400"> |
||||
<Container> |
||||
<div class="navbar"> |
||||
<div class="flex-1"> |
||||
<h4> |
||||
<span class="primary">git</span> |
||||
<span class="">together</span> |
||||
<span class="">.xyz</span> |
||||
<div class="navbar-start"></div> |
||||
<div class="navbar-center"> |
||||
<h4 class="align-middle text-sm font-mono"> |
||||
<span class="text-primary">git</span><span class="text-primary" |
||||
>workshop</span |
||||
><span class="">.net</span> |
||||
</h4> |
||||
</div> |
||||
<div class="flex-none gap-4"> |
||||
<div class="navbar-end gap-4"> |
||||
{#if !nip07plugin} |
||||
<div class="btn btn-primary normal-case">Sign up</div> |
||||
<div class="btn normal-case btn-sm btn-ghost">Sign up</div> |
||||
{:else} |
||||
<button class="btn normal-case btn-sm btn-ghost">Login</button> |
||||
{/if} |
||||
<button class="btn btn-outline normal-case">Login</button> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</Container> |
||||
</div> |
||||
|
||||
@ -1,15 +1,21 @@
@@ -1,15 +1,21 @@
|
||||
/** @type {import('tailwindcss').Config} */ |
||||
|
||||
|
||||
export default { |
||||
content: [ './src/**/*.{svelte,js,ts}' ], |
||||
content: ['./src/**/*.{svelte,js,ts}'], |
||||
theme: { |
||||
extend: {}, |
||||
extend: { |
||||
colors: { |
||||
"base-400": "#16171e", |
||||
}, |
||||
}, |
||||
}, |
||||
plugins: [ |
||||
require('@tailwindcss/typography'), |
||||
require('daisyui'), |
||||
], |
||||
daisyui: { |
||||
themes: [ 'dracula'], |
||||
themes: ['dracula'], |
||||
} |
||||
} |
||||
|
||||
|
||||