Optimization
This commit is contained in:
parent
76c72a6c87
commit
ab438c01de
4 changed files with 5 additions and 2 deletions
|
@ -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}
|
||||||
|
|
|
@ -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
BIN
public/logo-32x32.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 630 B |
|
@ -6,4 +6,7 @@ export default {
|
||||||
extend: {},
|
extend: {},
|
||||||
},
|
},
|
||||||
plugins: [require("daisyui")],
|
plugins: [require("daisyui")],
|
||||||
|
daisyui: {
|
||||||
|
themes: ["dark"],
|
||||||
|
},
|
||||||
} satisfies Config;
|
} satisfies Config;
|
||||||
|
|
Loading…
Add table
Reference in a new issue