diff --git a/apps/web/app/ius/[slug]/page.tsx b/apps/web/app/ius/[slug]/page.tsx index 146f86d..c8ba01c 100644 --- a/apps/web/app/ius/[slug]/page.tsx +++ b/apps/web/app/ius/[slug]/page.tsx @@ -17,7 +17,7 @@ export default async function Page(props: Props) {
- {Object.keys(data).map((name) => ( + {Object.keys(metaData).map((name) => ( ))}
diff --git a/packages/ui/button.tsx b/packages/ui/button.tsx index 4632515..87abeb9 100644 --- a/packages/ui/button.tsx +++ b/packages/ui/button.tsx @@ -4,7 +4,7 @@ import { cva } from 'class-variance-authority'; import type { ButtonHTMLAttributes } from 'react'; import { forwardRef } from 'react'; -const variants = cva('rounded-sm px-5 py-2.5 text-sm font-medium text-white', { +const variants = cva('rounded-sm h-10 px-5 py-2.5 text-sm font-medium text-white', { defaultVariants: { color: 'default', }, diff --git a/packages/ui/input.tsx b/packages/ui/input.tsx index c743ddd..c65b4ca 100644 --- a/packages/ui/input.tsx +++ b/packages/ui/input.tsx @@ -4,7 +4,7 @@ import { cva } from 'class-variance-authority'; import { forwardRef } from 'react'; const variants = cva( - 'block w-full rounded-sm border border-gray-300 p-2 text-sm text-gray-900 outline-none transition-all ease-linear hover:border-primary-500 hover:transition-all focus:border-primary-500 focus:transition-all' + 'hover:border-primary-500 focus:border-primary-500 block w-full rounded-sm border disabled:hover:border-gray-300 border-gray-300 h-9 p-2 px-3 text-sm text-gray-900 outline-none transition-all ease-linear hover:transition-all focus:transition-all disabled:cursor-not-allowed disabled:text-opacity-30' ); export type InputProps = React.InputHTMLAttributes &