erste Test ohne Fehler

This commit is contained in:
ISA
2024-09-23 13:46:44 +02:00
parent 067d2e0200
commit 6844c3cfab
10 changed files with 538 additions and 550 deletions

View File

@@ -1,5 +1,6 @@
"use client";
import React, { useEffect } from "react";
import Layout from "../components/Layout";
import Image from "next/image";
import "tailwindcss/tailwind.css"; // Stelle sicher, dass Tailwind CSS korrekt importiert wird
import "@fontsource/roboto"; // Standardimport für alle Schriftstärken
@@ -7,17 +8,15 @@ import "bootstrap-icons/font/bootstrap-icons.css";
function Dashboard() {
return (
<Layout>
<div className="bg-gray-100 flex flex-col min-h-screen">
<div className="flex flex-grow w-full">
{/* Main Section */}
<main className="flex-1 bg-white p-8 ml-4 shadow rounded-lg overflow-hidden">
{/* Hauptinhalt */}
<h1 className="text-2xl font-bold mb-4">Dashboard Übersicht</h1>
</main>
</div>
<div className="bg-gray-100 flex flex-col min-h-screen">
<div className="flex flex-grow w-full">
{/* Main Section */}
<main className="flex-1 bg-white p-8 ml-4 shadow rounded-lg overflow-hidden">
{/* Hauptinhalt */}
<h1 className="text-2xl font-bold mb-4">Dashboard Übersicht</h1>
</main>
</div>
</Layout>
</div>
);
}