ocr / src /components /HomeDashboard.jsx
ariansyahdedy's picture
Initial commit with clean Git repository
4fb0c68
raw
history blame contribute delete
590 Bytes
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;