-		
 do_on_key(event, 'Enter', false, edit_subheading_steps_and_close_modal)}>
+		
 do_on_key(event, 'Enter', false, edit_subheading_steps_and_close_modal)}>
 		
diff --git a/src/lib/components/SeasonSelect.svelte b/src/lib/components/SeasonSelect.svelte
index 26c1fd8..1593869 100644
--- a/src/lib/components/SeasonSelect.svelte
+++ b/src/lib/components/SeasonSelect.svelte
@@ -88,7 +88,8 @@ input[type=checkbox]::after
 
diff --git a/src/lib/components/TitleImgParallax.svelte b/src/lib/components/TitleImgParallax.svelte
index 9049140..d963641 100644
--- a/src/lib/components/TitleImgParallax.svelte
+++ b/src/lib/components/TitleImgParallax.svelte
@@ -35,13 +35,6 @@
   position: relative;
   margin: 30vh auto 0;
 }
-.blocker{
-	display:block;
-	z-index: 10;
-	background-color: white;
-	width: 100%;
-	height: 20vh;
-}
 
 .image-container {
   position: sticky;
diff --git a/src/routes/rezepte/add/+page.svelte b/src/routes/rezepte/add/+page.svelte
index 1d3394f..0210cc9 100644
--- a/src/routes/rezepte/add/+page.svelte
+++ b/src/routes/rezepte/add/+page.svelte
@@ -3,7 +3,6 @@
 	import SeasonSelect from '$lib/components/SeasonSelect.svelte';
 	import '$lib/css/action_button.css'
 
-    	export let data: PageData;
 	let preamble = ""
 	let addendum = ""
 
diff --git a/src/routes/rezepte/add/+page.ts b/src/routes/rezepte/add/+page.ts
deleted file mode 100644
index 475472d..0000000
--- a/src/routes/rezepte/add/+page.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import type { PageLoad } from "./$types";
-
-export async function load({ fetch }) {
-    let current_month = new Date().getMonth() + 1
-    const res_season = await fetch(`/api/items/category`);
-    const res_all_brief = await fetch(`/api/items/tag`);
-    const item_season = await res_season.json();
-    const item_all_brief = await res_all_brief.json();
-    return {
-	    season: item_season,
-	    all_brief: item_all_brief,
-    };
-};
diff --git a/src/routes/rezepte/edit/[name]/+page.svelte b/src/routes/rezepte/edit/[name]/+page.svelte
index 839186d..2fbab20 100644
--- a/src/routes/rezepte/edit/[name]/+page.svelte
+++ b/src/routes/rezepte/edit/[name]/+page.svelte
@@ -245,12 +245,6 @@ h1{
 h3{
 	text-align: center;
 }
-.delete{
-	position: fixed;
-	right: 0;
-	bottom: 0;
-	margin: 2rem;
-}
 
 
Rezept editieren