diff --git a/app/_components/ui/Button.tsx b/app/_components/ui/Button.tsx index aa43650..f0e68bb 100644 --- a/app/_components/ui/Button.tsx +++ b/app/_components/ui/Button.tsx @@ -40,3 +40,5 @@ Button.displayName = 'Button'; export { Button }; + + diff --git a/app/_components/ui/Input.tsx b/app/_components/ui/Input.tsx index 3424a82..f70dc24 100644 --- a/app/_components/ui/Input.tsx +++ b/app/_components/ui/Input.tsx @@ -1,7 +1,7 @@ import { cn } from '@/app/_utils/cn'; import { InputHTMLAttributes, forwardRef } from 'react'; -export interface InputProps extends InputHTMLAttributes {} +export interface InputProps extends InputHTMLAttributes { } const Input = forwardRef( ({ className, type, ...props }, ref) => { @@ -24,3 +24,5 @@ Input.displayName = 'Input'; export { Input }; + + diff --git a/app/_components/ui/ThemeProvider.tsx b/app/_components/ui/ThemeProvider.tsx index c7bee17..28a82b1 100644 --- a/app/_components/ui/ThemeProvider.tsx +++ b/app/_components/ui/ThemeProvider.tsx @@ -8,3 +8,5 @@ export function ThemeProvider({ children, ...props }: ThemeProviderProps) { } + + diff --git a/app/_components/ui/ThemeToggle.tsx b/app/_components/ui/ThemeToggle.tsx index 89ef3f6..d6b3889 100644 --- a/app/_components/ui/ThemeToggle.tsx +++ b/app/_components/ui/ThemeToggle.tsx @@ -31,3 +31,5 @@ export function ThemeToggle() { } + + diff --git a/postcss.config.js b/postcss.config.js index 822290e..96bb01e 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -3,6 +3,4 @@ module.exports = { tailwindcss: {}, autoprefixer: {}, }, -} - - +} \ No newline at end of file diff --git a/public/logo-small.png b/public/logo-small.png new file mode 100644 index 0000000..fcb5b6f Binary files /dev/null and b/public/logo-small.png differ diff --git a/public/logo.png b/public/logo.png index fcb5b6f..72ceecd 100644 Binary files a/public/logo.png and b/public/logo.png differ