import Hero from "~/components/landingpage/Hero"; import { MetaFunction } from "@remix-run/node"; import { openGraphTags } from "~/utils"; import React, { useEffect, useState } from "react"; import Container from "~/components/Container"; import { LinkButton } from "~/components/Button"; import { DiscordIcon, YCombinatorIcon } from "~/components/Icons"; import KickstarterIcon from "~/assets/kickstarter-icon.svg"; export const meta: MetaFunction = ({ data }) => { return [ ...openGraphTags( "JetKVM - Control any computer remotely", "JetKVM is a high-performance, open-source KVM over IP (Keyboard, Video, Mouse) solution designed for efficient remote management of computers, servers, and workstations. Whether you're dealing with boot failures, installing a new operating system, adjusting BIOS settings, or simply taking control of a machine from afar, JetKVM provides the tools to get it done effectively.", "JetKVM - Control any computer remotely", "Next generation KVM over IP" ), ]; }; export default function IndexRoute() { const [contentLoaded, setContentLoaded] = useState(false); useEffect(() => { const img = new Image(); img.src = "/jetkvm-device-still3.png"; img.onload = () => setContentLoaded(true); }, []); return (
{contentLoaded && (

Control any computer remotely

Next generation open-source KVM over IP for $69

JetKVM device
( )} to="https://www.kickstarter.com/projects/jetkvm/jetkvm?ref=5sxcqi" />
)}
); }