Removed unecessary (i think) dynamic JS class

This commit is contained in:
2025-01-10 16:39:52 +00:00
parent 822fbcbba3
commit 749655fa40

View File

@@ -7,16 +7,13 @@
import InfoScroll from "./InfoScroll.svelte"; import InfoScroll from "./InfoScroll.svelte";
import BottomCall from "./BottomCall.svelte"; import BottomCall from "./BottomCall.svelte";
let className = "";
export { className as class };
let use_video = true; let use_video = true;
function handleVideoError() { function handleVideoError() {
use_video = false; use_video = false;
} }
</script> </script>
<div class={"landing-page " + className}> <div class={"landing-page"}>
<div class="landing-zone-outer"> <div class="landing-zone-outer">
{#if use_video} {#if use_video}
<video <video
@@ -51,4 +48,3 @@
<BottomCall /> <BottomCall />
<NavigationFooter /> <NavigationFooter />
</div> </div>