import { Button } from "@/components/buttons/Button"; import { Icons } from "@/components/Icon"; import { IconPill } from "@/components/layout/IconPill"; import { Paragraph } from "@/components/text/Paragraph"; import { Title } from "@/components/text/Title"; import { ErrorContainer, ErrorLayout } from "@/pages/layouts/ErrorLayout"; import { usePlayerStore } from "@/stores/player/store"; import { ErrorCard } from "../errors/ErrorCard"; export function PlaybackErrorPart() { const playbackError = usePlayerStore((s) => s.interface.error); return ( Not found Goo goo gaa gaa Oh, my apowogies, sweetie! The itty-bitty movie-web did its utmost bestest, but alas, no wucky videos to be spotted anywhere (ยดโŠ™ฯ‰โŠ™`) Please don't be angwy, wittle movie-web ish twying so hard. Can you find it in your heart to forgive? UwU ๐Ÿ’– {/* Error */} {playbackError ? : null} ); }