initial commit
Some checks failed
Deploy App / docker (ubuntu-latest) (push) Failing after 55s

This commit is contained in:
Lee
2024-04-23 03:22:31 +01:00
parent 926e7d5d0f
commit 82c9bb702a
21 changed files with 3511 additions and 4987 deletions

View File

@ -0,0 +1,18 @@
import React from "react";
import { Button } from "@/app/components/ui/button";
import Link from "next/link";
type ActionMenuProps = {
children?: React.ReactNode;
};
export function ActionMenu({ children }: ActionMenuProps) {
return (
<div className="absolute top-0 right-0 flex items-center mx-3 mt-2 bg-secondary rounded-md p-2 gap-2">
{children}
<Link href={"/"}>
<Button>New</Button>
</Link>
</div>
);
}