import React from "react"; import { useNavigate } from "react-router-dom"; function Home() { const navigate = useNavigate(); const handleCreateStation = () => { navigate("/create-station"); }; const handleJoinStation = () => { navigate("/join-station"); }; return (

Serena Station Hub

Create or join a radio station to share music with friends

); } export default Home;