zhereh-frontend

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

+page.svelte (872B)


      1 <script lang="ts">
      2 	import { Routes } from "../shared/types"
      3 
      4 </script>
      5 
      6 <div class="flex flex-row items-center w-full mt-20">
      7   <div class="hero">
      8     <div class="hero-content text-center">
      9       <div class="max-w-xl">
     10         <h1 class="text-5xl font-bold">Welcome to Token Vote</h1>
     11         <p class="py-6">This Dapp enables to vote on propositions with zero or more options using ERC20 tokens.</p>
     12         <div class="flex justify-center gap-5 items-center">
     13           <a href={Routes.ConfigureNetwork} class="btn btn-sm text-white normal-case btn-secondary">Configure Network</a>
     14           <a href="/create-proposal" class="btn btn-sm text-white normal-case btn-secondary">Create Proposal</a>
     15           <a href="/current-proposal" class="btn btn-sm text-white normal-case btn-secondary">View Current Proposal</a>
     16         </div>
     17       </div>
     18     </div>
     19   </div>
     20 </div>