2024-02-21 20:10:42 -08:00
|
|
|
<script lang="ts">
|
|
|
|
import CameraContainer from './CameraContainer.svelte'
|
2024-02-23 18:19:32 -08:00
|
|
|
import { fade } from 'svelte/transition'
|
2024-02-21 20:10:42 -08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<div
|
2024-02-23 18:19:32 -08:00
|
|
|
in:fade={{ duration: 150, delay: 150 }}
|
|
|
|
out:fade={{ duration: 150 }}
|
2024-02-21 23:36:24 -08:00
|
|
|
class="flex gap-4 w-full py-40 px-10 backdrop-blur-lg justify-center h-full rounded-3xl shadow-md bg-slate-300 bg-opacity-30"
|
2024-02-21 20:10:42 -08:00
|
|
|
>
|
|
|
|
<div class="my-auto">
|
2024-02-23 18:02:10 -08:00
|
|
|
<CameraContainer cameraUrl="camera_url_here" />
|
2024-02-21 20:10:42 -08:00
|
|
|
</div>
|
|
|
|
<div class="my-auto">
|
2024-02-23 18:02:10 -08:00
|
|
|
<CameraContainer cameraUrl="camera_url_here" />
|
2024-02-21 20:10:42 -08:00
|
|
|
</div>
|
|
|
|
</div>
|