search page sillies
This commit is contained in:
parent
b7a15753d4
commit
441903800f
11 changed files with 62 additions and 8 deletions
|
@ -1,5 +1,5 @@
|
|||
<script module lang="ts">
|
||||
export { default as layout } from '@/Components/Layouts/AuthenticatedLayout.svelte';
|
||||
export { default as layout } from '@components/Layouts/AuthenticatedLayout.svelte';
|
||||
</script>
|
||||
|
||||
<script lang="ts">
|
||||
|
|
18
resources/js/Pages/Search.svelte
Normal file
18
resources/js/Pages/Search.svelte
Normal file
|
@ -0,0 +1,18 @@
|
|||
<script module lang="ts">
|
||||
export { default as layout } from '@components/Layouts/AuthenticatedLayout.svelte';
|
||||
</script>
|
||||
|
||||
<script lang="ts">
|
||||
import { globalState } from "@/Library/PassState.svelte";
|
||||
|
||||
let { appName } = $props();
|
||||
globalState.title = title;
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
<title>Search {globalState.searchQuery} - {appName}</title>
|
||||
</svelte:head>
|
||||
|
||||
{#snippet title()}
|
||||
<h1 class="text-4xl font-bold">Search</h1>
|
||||
{/snippet}
|
Loading…
Add table
Add a link
Reference in a new issue