Optimization

This commit is contained in:
Atridad Lahiji 2024-04-02 23:26:13 -06:00
parent 76c72a6c87
commit ab438c01de
No known key found for this signature in database
4 changed files with 5 additions and 2 deletions

View file

@ -41,7 +41,7 @@ const Navbar = ({ title }: NavbarProps) => {
> >
<img <img
className="md:mr-2" className="md:mr-2"
src="/logo.webp" src="/logo-32x32.webp"
alt="Nav Logo" alt="Nav Logo"
width={32} width={32}
height={32} height={32}

View file

@ -27,7 +27,7 @@ export const ErrorBoundary = ClerkErrorBoundary();
function App() { function App() {
return ( return (
<html lang="en" className="h-[100%] w-[100%] fixed overflow-y-auto"> <html data-theme="dark" lang="en" className="h-[100%] w-[100%] fixed overflow-y-auto">
<head> <head>
<meta charSet="utf-8" /> <meta charSet="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" /> <meta name="viewport" content="width=device-width, initial-scale=1" />

BIN
public/logo-32x32.webp Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 630 B

View file

@ -6,4 +6,7 @@ export default {
extend: {}, extend: {},
}, },
plugins: [require("daisyui")], plugins: [require("daisyui")],
daisyui: {
themes: ["dark"],
},
} satisfies Config; } satisfies Config;