vavicon + logo ergänzt
This commit is contained in:
parent
61f6235445
commit
1c43e6ac57
5 changed files with 18 additions and 2 deletions
BIN
app/favicon.png
Normal file
BIN
app/favicon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.9 KiB |
|
|
@ -168,12 +168,22 @@ h1 {
|
|||
text-align: center;
|
||||
margin-top: 40px;
|
||||
padding: 20px;
|
||||
color: #666;
|
||||
background-color: #333;
|
||||
color: #fff;
|
||||
font-size: 14px;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
.copyright p {
|
||||
margin: 0;
|
||||
margin: 10px 0 0;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.copyright-logo {
|
||||
max-height: 40px;
|
||||
width: auto;
|
||||
margin: 0 auto;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.pagination {
|
||||
|
|
|
|||
BIN
app/gstools_logo.jpg
Normal file
BIN
app/gstools_logo.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 25 KiB |
|
|
@ -1,5 +1,6 @@
|
|||
import type { Metadata } from 'next';
|
||||
import './globals.css';
|
||||
import favicon from './favicon.png';
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'To-Do-Liste',
|
||||
|
|
@ -13,6 +14,9 @@ export default function RootLayout({
|
|||
}) {
|
||||
return (
|
||||
<html lang="de">
|
||||
<head>
|
||||
<link rel="icon" href={favicon.src} type="image/png" />
|
||||
</head>
|
||||
<body>{children}</body>
|
||||
</html>
|
||||
);
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
'use client';
|
||||
|
||||
import { useState, useEffect } from 'react';
|
||||
import gstoolsLogo from './gstools_logo.jpg';
|
||||
|
||||
interface Aufgabe {
|
||||
id: number;
|
||||
|
|
@ -234,6 +235,7 @@ export default function TodoApp() {
|
|||
)}
|
||||
|
||||
<footer className="copyright">
|
||||
<img src={gstoolsLogo.src} alt="GSTools Logo" className="copyright-logo" />
|
||||
<p>© 2026 GSTools</p>
|
||||
</footer>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue