Merge remote-tracking branch 'refs/remotes/origin/develop' into develop

This commit is contained in:
2025-12-20 10:01:22 -05:00
8 changed files with 420 additions and 7 deletions
+4 -3
View File
@@ -11,6 +11,7 @@ import {
Settings,
LucideMail,
} from "lucide-react";
import Link from "next/link";
type AdminLeftNavigationProps = {
collapsed: boolean;
@@ -59,8 +60,8 @@ const navItems = [
icon: <Settings className="h-4 w-4" />,
},
{
label: "List Emails",
href: "/admin/email",
label: "Manage Emails",
href: "/admin/email/manage",
icon: <LucideMail className="h-4 w-4" />,
},
{
@@ -97,7 +98,7 @@ export default function AdminLeftNavigation({
{!collapsed && (
<div>
<p className="text-xs font-semibold uppercase tracking-[0.18em] text-zinc-500">
Battl Builders
<Link href={"/"} title={"Back to Battl Dashboard"} >Battl Builders</Link>
</p>
<p className="text-[10px] text-zinc-600">Admin Command</p>
</div>
+2 -1
View File
@@ -1,5 +1,6 @@
"use client";
import QuillImageResize from "quill-image-resize-module";
Quill.register("modules/imageResize", QuillImageResize);
import dynamic from "next/dynamic";
import type React from "react";