feat: finalize pages

This commit is contained in:
Stavros
2025-05-09 16:25:12 +03:00
parent 56ae246ff4
commit 51532350cc
14 changed files with 199 additions and 35 deletions

View File

@@ -0,0 +1,22 @@
import { twMerge } from "tailwind-merge";
interface CodeProps extends React.ComponentPropsWithoutRef<"code"> {
children?: React.ReactNode;
className?: string;
}
function Code({ children, className, ...props }: CodeProps) {
return (
<code
className={twMerge(
"relative rounded bg-muted px-[0.2rem] py-[0.1rem] font-mono text-sm font-semibold",
className,
)}
{...props}
>
{children}
</code>
);
}
export { Code };

View File

@@ -16,7 +16,7 @@ export const OAuthButton = (props: Props) => {
return (
<Button
onClick={onClick}
className={twMerge("rounded-full", className)}
className={twMerge("rounded-md", className)}
variant="outline"
{...rest}
>