Skip to content

Commit

Permalink
fix: homescreen
Browse files Browse the repository at this point in the history
  • Loading branch information
prtkjakhar committed Apr 19, 2024
1 parent ef39c6b commit 58e71a0
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions apps/amakrushi/src/components/HomePage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -375,15 +375,17 @@ const HomePage: NextPage = () => {
width: '100%',
maxWidth: '500px',
}}>
{/* <div className={styles.imgBtn} onClick={() => { context?.setKaliaClicked((props: boolean) => !props); }}>
<p>{t('label.kalia_status')}</p>
<div className={styles.imgBtn} onClick={() => {
sendMessage(t('label.weather_advisory'));
}}>
<p>{t('label.weather_advisory')}</p>
<Image
src={kaliaStatusImg}
width={80}
height={80}
alt="kaliastatus"
src={weatherAdvisoryImg}
width={50}
height={70}
alt="weatheradvisory"
/>
</div> */}
</div>
<div className={styles.imgBtn} onClick={() => {
toast('Coming Soon!')
}}>
Expand All @@ -396,17 +398,15 @@ const HomePage: NextPage = () => {
/>
</div>
</div>
<div className={styles.imgBtn} style={{ marginTop: '20px' }} onClick={() => {
sendMessage(t('label.weather_advisory'));
}}>
<p>{t('label.weather_advisory')}</p>
{/* <div className={styles.imgBtn} onClick={() => { context?.setKaliaClicked((props: boolean) => !props); }}>
<p>{t('label.kalia_status')}</p>
<Image
src={weatherAdvisoryImg}
width={50}
height={70}
alt="weatheradvisory"
src={kaliaStatusImg}
width={80}
height={80}
alt="kaliastatus"
/>
</div>
</div> */}
</div>
<div className={styles.voiceRecorder} ref={voiceRecorderRef}>
<RenderVoiceRecorder setInputMsg={setInputMsg} tapToSpeak={true} includeDiv={true} />
Expand Down Expand Up @@ -482,4 +482,4 @@ const HomePage: NextPage = () => {
</>
);
};
export default HomePage;
export default HomePage;

0 comments on commit 58e71a0

Please sign in to comment.