import React from "react"; import { Link, useNavigate } from "react-router-dom"; import "./Landing.css"; const LandingPage: React.FC = () => { const navigate = useNavigate(); const handleSubscribeClick = () => { navigate("/login"); }; const handleGoToFlightsClick = () => { navigate("/flights"); }; return (

Welcome to FIDS!

If you want to subscribe to flights, please create or log in to your account.

Otherwise, you can continue to the flights page.

); }; export default LandingPage;