import { isPWA } from "@/lib/client/utils"; import React, { useState } from "react"; type Props = {}; const InstallApp = (props: Props) => { const [isOpen, setIsOpen] = useState(true); return isOpen && !isPWA() ? (

Install Linkwarden to your home screen for a faster access and enhanced experience.{" "} Learn more

) : ( <> ); }; export default InstallApp;