diff --git a/index.html b/index.html index 3ab6e63..8d8fa88 100644 --- a/index.html +++ b/index.html @@ -5,18 +5,16 @@ Lovable App - - + + - - + + - - - +
diff --git a/public/favicon.ico b/public/favicon.ico index 3c01d69..039ed6a 100644 Binary files a/public/favicon.ico and b/public/favicon.ico differ diff --git a/src/App.tsx b/src/App.tsx index 6957079..2f57509 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,4 +1,4 @@ -import React from "react"; +import React, { useEffect } from "react"; import { Toaster } from "@/components/ui/toaster"; import { Toaster as Sonner } from "@/components/ui/sonner"; import { TooltipProvider } from "@/components/ui/tooltip"; @@ -82,15 +82,21 @@ class ErrorBoundary extends React.Component< } } -const App = () => ( - - - - - - - - +const App = () => { + // Set document title + useEffect(() => { + document.title = "Financen Mizera"; + }, []); + + return ( + + + + + + + + } /> } /> } /> @@ -143,6 +149,7 @@ const App = () => ( -); + ); +}; export default App; diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 2128a48..b2982c5 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -109,17 +109,17 @@ const Layout = ({ children }: LayoutProps) => { variant="outline" size="icon" aria-label="Nach oben" - className="h-12 w-12 rounded-full bg-white/95 border border-blue-200 shadow-md hover:bg-blue-50" + className="h-12 w-12 rounded-full bg-white/95 border border-blue-200 shadow-md hover:bg-blue-50 sm:h-9 sm:w-9" onClick={() => window.scrollTo({ top: 0, behavior: 'smooth' })} > - + )} -