mirror of
https://github.com/danbulant/Portfolio
synced 2026-05-27 05:51:56 +00:00
Merge pull request #118 from EETagent/admin_page_header
This commit is contained in:
commit
15865b0d7b
1 changed files with 5 additions and 1 deletions
|
|
@ -6,9 +6,10 @@
|
||||||
import CreateCandidateModal from '$lib/components/admin/CreateCandidateModal.svelte';
|
import CreateCandidateModal from '$lib/components/admin/CreateCandidateModal.svelte';
|
||||||
import Fuse from 'fuse.js';
|
import Fuse from 'fuse.js';
|
||||||
import type { PageServerData } from './$types';
|
import type { PageServerData } from './$types';
|
||||||
import Delete from '$lib/components/button/Delete.svelte';
|
|
||||||
import Table from '$lib/components/admin/table/Table.svelte';
|
import Table from '$lib/components/admin/table/Table.svelte';
|
||||||
|
|
||||||
|
import bacgkround from "$lib/assets/background.jpg";
|
||||||
|
|
||||||
export let data: PageServerData;
|
export let data: PageServerData;
|
||||||
|
|
||||||
let candidates: Array<CandidatePreview> = data.preview;
|
let candidates: Array<CandidatePreview> = data.preview;
|
||||||
|
|
@ -97,6 +98,9 @@
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
|
<header class="w-full h-14">
|
||||||
|
<img class="h-12 w-full object-cover filter blur-sm" src={bacgkround} alt="Background">
|
||||||
|
</header>
|
||||||
<div class="flex flex-row">
|
<div class="flex flex-row">
|
||||||
<div class="list fixed">
|
<div class="list fixed">
|
||||||
{#each filters as filter}
|
{#each filters as filter}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue