This commit is contained in:
phaichayon
2026-04-23 15:37:01 +07:00
parent 67960174d3
commit a330abf9b6
36 changed files with 4656 additions and 278 deletions

View File

@@ -0,0 +1,28 @@
import PageContainer from "@/components/layout/page-container";
import { buttonVariants } from "@/components/ui/button";
import { Heading } from "@/components/ui/heading";
import { Separator } from "@/components/ui/separator";
import { cn } from "@/lib/utils";
import { IconPlus } from "@tabler/icons-react";
import Link from "next/link";
export default async function Page({ params }) {
const { branch } = await params;
console.log("branch", branch);
return (
<PageContainer>
<div className="flex flex-1 flex-col space-y-4">
<div className="flex items-start justify-between">
<Heading title="ลูกค้า" description="จัดการลูกค้า" />
<Link
href="/dashboard/product/new"
className={cn(buttonVariants(), "text-xs md:text-sm")}
>
<IconPlus className="mr-2 h-4 w-4" />
</Link>
</div>
<Separator />
</div>
</PageContainer>
);
}