2024-02-21 20:10:42 -08:00
|
|
|
<script lang="ts">
|
2024-02-24 01:38:00 -08:00
|
|
|
import AppContainer from '../AppContainer.svelte'
|
2024-02-21 20:10:42 -08:00
|
|
|
import CameraContainer from './CameraContainer.svelte'
|
2024-03-16 19:12:08 -07:00
|
|
|
import { settingsStore } from '../../stores/settingsStore'
|
2024-02-21 20:10:42 -08:00
|
|
|
</script>
|
|
|
|
|
2024-02-24 01:38:00 -08:00
|
|
|
<AppContainer
|
|
|
|
class="px-10 py-20 flex gap-4 w-full 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-03-16 19:12:08 -07:00
|
|
|
<CameraContainer cameraUrl={$settingsStore.frontCameraAddr} />
|
2024-02-21 20:10:42 -08:00
|
|
|
</div>
|
|
|
|
<div class="my-auto">
|
2024-03-16 19:12:08 -07:00
|
|
|
<CameraContainer cameraUrl={$settingsStore.rearCameraAddr} />
|
2024-02-21 20:10:42 -08:00
|
|
|
</div>
|
2024-02-24 01:38:00 -08:00
|
|
|
</AppContainer>
|