import PageBreadcrumb from "@/components/common/PageBreadCrumb"; import Badge from "@/components/ui/badge/Badge"; import { PlusIcon } from "@/icons"; import { Metadata } from "next"; import React from "react"; export const metadata: Metadata = { title: "Next.js Badge | TailAdmin - Next.js Dashboard Template", description: "This is Next.js Badge page for TailAdmin - Next.js Tailwind CSS Admin Dashboard Template", // other metadata }; export default function BadgePage() { return (

With Light Background

{/* Light Variant */} Primary Success {" "} Error {" "} Warning {" "} Info Light Dark

With Solid Background

{/* Light Variant */} Primary Success {" "} Error {" "} Warning {" "} Info Light Dark

Light Background with Left Icon

}> Primary }> Success {" "} }> Error {" "} }> Warning {" "} }> Info }> Light }> Dark

Solid Background with Left Icon

}> Primary }> Success {" "} }> Error {" "} }> Warning {" "} }> Info }> Light }> Dark

Light Background with Right Icon

}> Primary }> Success {" "} }> Error {" "} }> Warning {" "} }> Info }> Light }> Dark

Solid Background with Right Icon

}> Primary }> Success {" "} }> Error {" "} }> Warning {" "} }> Info }> Light }> Dark
); }