mirror of
https://github.com/danbulant/Portfolio
synced 2026-05-24 12:35:31 +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 Fuse from 'fuse.js';
|
||||
import type { PageServerData } from './$types';
|
||||
import Delete from '$lib/components/button/Delete.svelte';
|
||||
import Table from '$lib/components/admin/table/Table.svelte';
|
||||
|
||||
import bacgkround from "$lib/assets/background.jpg";
|
||||
|
||||
export let data: PageServerData;
|
||||
|
||||
let candidates: Array<CandidatePreview> = data.preview;
|
||||
|
|
@ -97,6 +98,9 @@
|
|||
{/if}
|
||||
|
||||
<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="list fixed">
|
||||
{#each filters as filter}
|
||||
|
|
|
|||
Loading…
Reference in a new issue