This commit is contained in:
Carl-Gerhard Lindesvärd
2024-01-22 20:15:22 +01:00
parent df239ba436
commit 30af9cab2f
5 changed files with 37 additions and 18 deletions

View File

@@ -1,8 +1,8 @@
export function Logo() {
return (
<div className="text-xl flex gap-2 items-center">
<img src="/logo.svg" className="w-8 rounded-lg" />
<span className="relative -top-0.5">openpanel</span>
<div className="text-xl font-medium flex gap-2 items-center">
<img src="/logo.svg" className="max-h-10" />
openpanel.dev
</div>
);
}

View File

@@ -10,7 +10,7 @@ import { toast } from '@/components/ui/use-toast';
import { useAppParams } from '@/hooks/useAppParams';
import type { IChartInput } from '@/types';
import { zodResolver } from '@hookform/resolvers/zod';
import { useRouter, useSearchParams } from 'next/navigation';
import { useParams, useRouter, useSearchParams } from 'next/navigation';
import { Controller, useForm } from 'react-hook-form';
import { z } from 'zod';