"use client" import { useState } from "react" import Link from "next/link" import { Button } from "@/components/ui/button" import { Breadcrumbs } from "@/components/breadcrumbs" import { PublicInset, PublicPageHeader, PublicSurface, } from "@/components/public-surface" 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 (

Please watch the videos to learn more about your HY 900