From d5c0992023f0a5e9fb015c9ee26de91e96e62137 Mon Sep 17 00:00:00 2001 From: preston176 Date: Tue, 28 May 2024 21:08:11 +0300 Subject: [PATCH] added speechtotext route --- src/App.jsx | 3 + src/Components/Header/Header.jsx | 1 - src/Components/Hero/Hero.jsx | 2 +- .../ImageGenerator/ImageGenerator.jsx | 8 +- src/Pages/AiServices.jsx | 96 ++++++++++++++++++- src/Pages/SpeechToText.jsx | 89 +++++++++++++++++ 6 files changed, 193 insertions(+), 6 deletions(-) create mode 100644 src/Pages/SpeechToText.jsx diff --git a/src/App.jsx b/src/App.jsx index f286f3f..4260090 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -8,6 +8,7 @@ import Footer from './Components/Footer/Footer'; import About from './Pages/About'; import { ThemeContext } from '@emotion/react'; import AiServices from './Pages/AiServices'; +import SpeechToText from './Pages/SpeechToText'; const App = () => { const [isDarkMode, setIsDarkMode] = useState(true); @@ -26,6 +27,8 @@ const App = () => { } /> } /> } /> + } /> + } /> Not Found} />