Live streams from independent channels
Watch public live broadcasts, follow channels, and chat while creators stream from OBS.
import { Head, Link, usePage } from '@inertiajs/react';
import {
LayoutDashboard,
Radio,
Search,
UserPlus,
Users,
Video,
} from 'lucide-react';
import { useMemo, useState } from 'react';
import { Button } from '@/components/ui/button';
import { Input } from '@/components/ui/input';
import type { Category, ChannelCard } from '@/types';
type Props = {
canRegister: boolean;
liveChannels: ChannelCard[];
categories: Category[];
};
export default function Welcome({
canRegister,
liveChannels,
categories,
}: Props) {
const { auth } = usePage().props;
const [query, setQuery] = useState('');
const [category, setCategory] = useState
Watch public live broadcasts, follow channels, and chat while creators stream from OBS.