Skip to content

Commit

Permalink
feat: Add footer
Browse files Browse the repository at this point in the history
  • Loading branch information
mateoroldos committed Mar 20, 2024
1 parent 0bc8a4e commit 1ac9927
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/lib/components/Footer.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<footer class="bg-gray-100 flex items-center justify-center py-4 text-gray-500">
<p>
Made by <a
class="underline text-gray-600 decoration-gray-300 underline-offset-4 transition-colors focus:decoration-gray-500 focus:outline-offset-6 hover:decoration-orange-300"
href="https://github.com/mateoroldos"
target="_blank">mateoroldos</a
>
and
<a
class="underline text-gray-600 decoration-gray-300 underline-offset-4 transition-colors focus:decoration-gray-500 focus:outline-offset-6 hover:decoration-orange-300"
href="https://emestudio.xyz/"
target="_blank">eme studio</a
>.
</p>
</footer>
2 changes: 2 additions & 0 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<script lang="ts">
import { goto } from '$app/navigation'
import Footer from '$lib/components/Footer.svelte'
import * as Card from '$lib/components/ui/card'
import { v4 as uuidv4 } from 'uuid'
import { Input } from '$lib/components/ui/input'
Expand Down Expand Up @@ -157,6 +158,7 @@
{/if}
</div>
</section>
<Footer />

<style>
section {
Expand Down
9 changes: 9 additions & 0 deletions wrangler.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name = "Tokenbase"
main = "src/index.ts"
compatibility_date = "2022-11-07"
node_compat = true

[[ d1_databases ]]
binding = "DB"
database_name = "YOUR DB NAME"
database_id = "YOUR DB ID"

0 comments on commit 1ac9927

Please sign in to comment.