Skip to content

Commit

Permalink
Shuffle titles
Browse files Browse the repository at this point in the history
  • Loading branch information
timmo001 committed Sep 3, 2024
1 parent 9e4c58e commit db4927e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/app/_components/forecast-now.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ export function ForecastNow() {

return (
<div className="flex select-none flex-col items-center gap-1 text-center">
<h3 className="text-xl font-semibold">Now</h3>
{forecastNow.isLoading ? (
<span>Loading realtime forecast...</span>
) : forecastNow.isError ? (
Expand Down
3 changes: 2 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,9 @@ export default function HomePage() {
<LocationForm />
</section>
<section className="flex w-full flex-col items-center gap-3 delay-300 duration-300 animate-in fade-in">
<h2 className="text-2xl font-bold">Forecast</h2>
<h2 className="text-2xl font-bold">Now</h2>
<ForecastNow />
<h2 className="mt-3 text-2xl font-bold">Forecast</h2>
<ForecastHourly />
<ForecastDaily />
</section>
Expand Down

0 comments on commit db4927e

Please sign in to comment.