feat: Update favicon path and enhance Home page content; adjust CSS for improved layout

This commit is contained in:
2025-05-07 00:22:43 +02:00
parent b4ca0cf600
commit 24fa4ada61
7 changed files with 45 additions and 27 deletions
+9 -1
View File
@@ -1,10 +1,18 @@
import { AppShellWithMenu } from '../components/Appshell/Appshell';
import { Welcome } from '@/components/Welcome/Welcome';
export function HomePage() {
return (
<AppShellWithMenu>
<Welcome />
<div style={{ padding: '20px' }}>
<h1>Welcome to the Home Page</h1>
<p>This is the home page content.</p>
</div>
</AppShellWithMenu>
);
}