Footer component cleanup
This commit is contained in:
parent
b27fb8c0b5
commit
05306c75a5
@ -41,6 +41,7 @@
|
||||
import Transition from "./components/Transition.svelte";
|
||||
import Orgs from "./components/Orgs.svelte";
|
||||
import Runners from "./components/Runners.svelte";
|
||||
import Footer from "./components/Footer.svelte";
|
||||
store.init();
|
||||
|
||||
// if ("serviceWorker" in navigator) {
|
||||
@ -170,6 +171,7 @@
|
||||
<Settings />
|
||||
</Route>
|
||||
</Transition>
|
||||
<Footer />
|
||||
</Dashboard>
|
||||
{:else}
|
||||
<Login />
|
||||
|
@ -1,12 +1,10 @@
|
||||
<script>
|
||||
import { _ } from "svelte-i18n";
|
||||
import Footer from "./Footer.svelte";
|
||||
</script>
|
||||
|
||||
<style>
|
||||
* {
|
||||
font-family: "Agave", sans-serif;
|
||||
/* font-family: "Comic Neue", cursive; */
|
||||
}
|
||||
</style>
|
||||
|
||||
@ -14,13 +12,6 @@
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://cdn.jsdelivr.net/npm/@xz/fonts@1/serve/agave.min.css" />
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://cdn.jsdelivr.net/npm/@xz/fonts@1/serve/nevermind.min.css" />
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" />
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css2?family=Comic+Neue:wght@700&display=swap"
|
||||
rel="stylesheet" />
|
||||
</svelte:head>
|
||||
<div class="pt-12 px-4 sm:px-6 lg:px-8 lg:pt-20 bg-gray-900 pb-12">
|
||||
<div class="text-center mb-8">
|
||||
@ -220,4 +211,3 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<Footer />
|
||||
|
@ -7,7 +7,6 @@
|
||||
import BreadcrumbNav from "./BreadcrumbNav.svelte";
|
||||
import DataTable from "./DataTable.svelte";
|
||||
import FileUpload from "./FileUpload.svelte";
|
||||
import Footer from "./Footer.svelte";
|
||||
import FormLayout from "./FormLayout.svelte";
|
||||
import NotFound from "./NotFound.svelte";
|
||||
import Pagination from "./Pagination.svelte";
|
||||
|
@ -4,7 +4,6 @@
|
||||
import BreadcrumbNav from "./BreadcrumbNav.svelte";
|
||||
import DataTable from "./DataTable.svelte";
|
||||
import FileUpload from "./FileUpload.svelte";
|
||||
import Footer from "./Footer.svelte";
|
||||
import FormLayout from "./FormLayout.svelte";
|
||||
import NotFound from "./NotFound.svelte";
|
||||
import Pagination from "./Pagination.svelte";
|
||||
@ -51,7 +50,11 @@
|
||||
<!-- Add content here, remove div below -->
|
||||
<!-- <div class="border-4 border-dashed rounded h-96" /> -->
|
||||
<h1 class="text-3xl leading-tight">
|
||||
<span class="font-bold">Dashboard</span><span> - hello there, <span class="text-blue-500">{store.state.jwtinfo.userdetails.firstname}</span> 👋</span>
|
||||
<span class="font-bold">Dashboard</span><span>
|
||||
- hello there,
|
||||
<span
|
||||
class="text-blue-500">{store.state.jwtinfo.userdetails.firstname}</span>
|
||||
👋</span>
|
||||
</h1>
|
||||
<div class="shadow px-6 pt-4 pb-1">
|
||||
<BreadcrumbNav />
|
||||
@ -126,6 +129,4 @@
|
||||
<div class="mb-8">
|
||||
<FormLayout />
|
||||
</div>
|
||||
<Footer />
|
||||
<!-- <NotFound /> -->
|
||||
</div>
|
||||
|
@ -1,6 +1,5 @@
|
||||
<script>
|
||||
import { _ } from "svelte-i18n";
|
||||
import Footer from "./Footer.svelte";
|
||||
</script>
|
||||
|
||||
<style>
|
||||
@ -43,4 +42,3 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<Footer />
|
||||
|
Loading…
x
Reference in New Issue
Block a user