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 20bdaa6 commit 8c3939c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
8 changes: 0 additions & 8 deletions Web Development/Basic/Age_Calculator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,6 @@ npm start

This will start the development server and you can view the application in your browser at `http://localhost:3000`.

## Screenshots

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

## Deployment link

[Age Calculator](https://age-calculator-rho-two.vercel.app/) - Click here to view the live application.

## Usage

1. **Enter Date of Birth:**
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'>Uncover the Secrets of Time: Calculate Your Age with Precision!</h3>
<h3 className='text-2xl text-center text-stone-400'>Enter your date of birth in the date picker</h3>
<AgeCalculatorForm calculateAge={calculateAge} />
{age && <AgeResult age={age} />}
</div>
Expand Down

0 comments on commit 8c3939c

Please sign in to comment.