add basic home page + header

This commit is contained in:
csehviktor
2025-07-03 07:50:29 +02:00
parent 6c26f2f43f
commit 7bea3eb594
3 changed files with 57 additions and 3 deletions

View File

@@ -1,8 +1,20 @@
import { Header } from "@/components/Header";
export function HomePage() {
return (
<div>
<h1>Welcome to Status Monitor</h1>
<p>This is the home page.</p>
<Header
props={{
title: "Status Monitor",
subtitle: "Home",
hasBackButton: false,
}}
/>
<main className="max-w-7xl mx-auto py-8">
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-6 mb-8">
<h1>helo vilag</h1>
</div>
</main>
</div>
);
}