Skip to content

Commit

Permalink
Issue#1181 fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
ParnaRoyChowdhury777 committed Jul 19, 2024
1 parent 56257e7 commit 3c2151f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
Binary file modified Web Development/Basic/Age_Calculator/Images/age_calculator_ss.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions Web Development/Basic/Age_Calculator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,14 @@ This will start the development server and you can view the application in your
3. **Error Handling:**
- If a future date is selected, an error message will be displayed prompting you to select a valid date of birth.

## Screenshots

![Age Calculator](./Images/age_calculator_ss.png)

## Deployment Link

The application is deployed on Vercel. You can access it [here](https://age-calculator-rho-two.vercel.app/).

## Issue Solved

Solves Issue [#1181](https://github.com/Kushal997-das/Project-Guidance/issues/1181)
Expand Down
2 changes: 1 addition & 1 deletion Web Development/Basic/Age_Calculator/src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const App = () => {
<div className='flex flex-col md:flex-row justify-end bg-slate-50'>
<div className='self-center w-full md:w-1/2'>
<h1 className='text-5xl font-bold tracking-wider my-12 text-center text-slate-600'>Age Calculator</h1>
<h3 className='text-2xl text-center text-stone-400'>Enter your date of birth in the date picker</h3>
<h3 className='text-2xl text-center text-stone-400'>Enter your date of birth in the date picker and calculate your age with precision</h3>
<AgeCalculatorForm calculateAge={calculateAge} />
{age && <AgeResult age={age} />}
</div>
Expand Down

0 comments on commit 3c2151f

Please sign in to comment.