'use client' import { useState } from 'react' import Link from 'next/link' import { Card, CardContent } from '@/components/ui/card' import { Button } from '@/components/ui/button' const videos = [ { id: 'dgE8nyaxdJI', title: 'Seaga HY900 Overview', category: 'all' }, { id: 'HcVuro9drHo', title: 'Troubleshooting Vertical Drop', category: 'troubleshooting-vertical-drop' }, { id: '-FGJVfZSMAg', title: 'Loading Cans', category: 'loading-cans' }, { id: '-AzbNKq9nHg', title: 'Loading Bottles', category: 'loading-bottles' }, { id: 'LeKX2zJzFMY', title: 'Changing Can to Bottle', category: 'changing-can-to-bottle' } ] const filterCategories = [ { value: '', label: 'All' }, { value: 'troubleshooting-vertical-drop', label: 'Troubleshooting Vertical Drop' }, { value: 'loading-cans', label: 'Loading Cans' }, { value: 'loading-bottles', label: 'Loading Bottles' }, { value: 'changing-can-to-bottle', label: 'Changing Can to Bottle' } ] export default function SeagaHY900SupportPage() { const [selectedCategory, setSelectedCategory] = useState('') const filteredVideos = videos.filter(video => selectedCategory === '' || selectedCategory === 'all' || video.category === selectedCategory ) return (

Seaga HY 900 Support

Please watch the videos to learn more about your HY 900