added Layout and weather card

This commit is contained in:
2025-07-27 11:06:03 +02:00
parent 7efabca15d
commit 30bdcb6e4e
6 changed files with 89 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
import React from "react";
const WeaatherCard: React.FC = () => {
return (
<div>
<h2>Weather Card</h2>
<p>Current Weather will be displayed here</p>
<form action="" method="post">
<label htmlFor="city">Enter City:</label>
<input type="text" id="city" name="city" placeholder="City Name" />
<button type="submit">Get Weather</button>
</form>
</div>
);
};
export default WeaatherCard;