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