Normalize pub_date to ISO 8601 on insert so SQLite datetime comparisons work correctly. Migrate existing RFC 2822 dates. Change 1h filter to 12h. Add react-grid-layout with persistent drag/resize and reset button. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
571 B
TypeScript
17 lines
571 B
TypeScript
import { GridShell } from "@/components/dashboard/GridShell";
|
|
import { UptimeCard } from "@/components/widgets/UptimeCard";
|
|
import { GlobeCard } from "@/components/widgets/GlobeCard";
|
|
import { WeatherCard } from "@/components/widgets/WeatherCard";
|
|
import { NewsFeed } from "@/components/widgets/NewsFeed";
|
|
|
|
export default function Home() {
|
|
return (
|
|
<GridShell>
|
|
<div key="uptime"><UptimeCard /></div>
|
|
<div key="weather"><WeatherCard /></div>
|
|
<div key="globe"><GlobeCard /></div>
|
|
<div key="newsfeed"><NewsFeed /></div>
|
|
</GridShell>
|
|
);
|
|
}
|