Update +page.svelte

This commit is contained in:
Luke Hagar
2024-06-03 21:32:09 -05:00
parent 78a1eaa5c7
commit c72ed736b3

View File

@@ -25,16 +25,14 @@
<table class="table"> <table class="table">
<thead> <thead>
<tr> <tr>
<th class="text-left">ID</th>
<th class="text-left">Name</th> <th class="text-left">Name</th>
<th class="text-left">Actions</th> <th class="text-center">Actions</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
{#if $apiSpecs} {#if $apiSpecs}
{#each $apiSpecs as spec (spec.id)} {#each $apiSpecs as spec (spec.id)}
<tr> <tr>
<td>{spec.id}</td>
<td>{spec.name}</td> <td>{spec.name}</td>
<td> <td>
<LoadButton {spec} /> <LoadButton {spec} />
@@ -53,32 +51,10 @@
placeholder="Enter the name for the API Spec" placeholder="Enter the name for the API Spec"
/> />
{/if} {/if}
<SaveButton /> <SaveButton />
<SaveNewButton /> <SaveNewButton />
<CreateNewButton /> <CreateNewButton />
<Upload /> <Upload />
<DeleteAllButton /> <DeleteAllButton />
</div> </div>
<!-- <div class="w-full h-full flex flex-col items-center justify-center grow">
<h1 class="h1">
<span
class="bg-gradient-to-br from-blue-500 to-cyan-300 bg-clip-text text-transparent box-decoration-clone"
>
Design.
</span>
</h1>
<h1 class="h1">
<span
class="bg-gradient-to-br from-red-500 to-yellow-500 bg-clip-text text-transparent box-decoration-clone"
>
Build.
</span>
</h1>
<h1 class="h1">
<span
class="bg-gradient-to-br from-pink-500 to-violet-500 bg-clip-text text-transparent box-decoration-clone"
>
Deploy.
</span>
</h1>
</div> -->