Spaces:
Running
Running
File size: 590 Bytes
4fb0c68 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import { Link } from 'react-router-dom';
function HomeDashboard() {
return (
<div className="min-h-screen bg-gray-100 flex flex-col justify-center items-center">
<h1 className="text-4xl font-bold mb-8">Welcome to the Speech Services Dashboard</h1>
<div className="flex space-x-4">
<Link to="/text-to-speech" className="px-6 py-3 bg-blue-500 text-white rounded-lg">Text to Speech</Link>
<Link to="/speech-to-text" className="px-6 py-3 bg-green-500 text-white rounded-lg">Speech to Text</Link>
</div>
</div>
);
}
export default HomeDashboard;
|