1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React from "https://esm.sh/react@18.2.0?deps=react@18.2.0";
3
4export default function TelegramLinks() {
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React, { useState, useEffect, useMemo } from "https://esm.sh/react@18.2.0?deps=react@18.2.0";
3import { detectCardType } from "../../shared/utils.ts";
4
183 };
184
185 const importBINs = (event: React.ChangeEvent<HTMLInputElement>) => {
186 const file = event.target.files?.[0];
187 if (!file) return;
1/** @jsxImportSource https://esm.sh/react@18.2.0?dev */
2
3export const Link = ({
6 className = "",
7}: {
8 children: React.ReactNode;
9 href: string;
10 className?: string;
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React, { useState } from "https://esm.sh/react@18.2.0?deps=react@18.2.0";
3import type { Event } from "../../shared/types.ts";
4
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React from "https://esm.sh/react@18.2.0?deps=react@18.2.0";
3import type { FilmClub } from "../../shared/types.ts";
4
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React from "https://esm.sh/react@18.2.0?deps=react@18.2.0";
3
4export default function About() {
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React, { useState } from "https://esm.sh/react@18.2.0?deps=react@18.2.0";
3import type { Event, FilmClub, Video, VideoCategory } from "../../shared/types.ts";
4import Hero from "./Hero.tsx";
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React from "https://esm.sh/react@18.2.0?deps=react@18.2.0";
3import { createRoot } from "https://esm.sh/react-dom@18.2.0/client?deps=react@18.2.0,react-dom@18.2.0";
4import App from "./components/App.tsx";
5
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React, { useState } from "https://esm.sh/react@18.2.0?deps=react@18.2.0";
3import type { Video, VideoCategory } from "../../shared/types.ts";
4import VideoGallery from "./VideoGallery.tsx";
1/** @jsxImportSource https://esm.sh/react@18.2.0 */
2import React, { useState, useRef, useEffect } from "https://esm.sh/react@18.2.0?deps=react@18.2.0";
3import type { Video, VideoPlayerState } from "../../shared/types.ts";
4
79 };
80
81 const handleSeek = (e: React.MouseEvent<HTMLDivElement>) => {
82 const video = videoRef.current;
83 if (!video) return;
91 };
92
93 const handleVolumeChange = (e: React.ChangeEvent<HTMLInputElement>) => {
94 const video = videoRef.current;
95 if (!video) return;