Compare commits
No commits in common. "124b0cdfefaa5bb3165e9289cd60fde89c552cf1" and "24b44a491ae51e09f15e4a49e68258ff9a31d070" have entirely different histories.
124b0cdfef
...
24b44a491a
|
|
@ -208,7 +208,7 @@ function TenantSettingsContentTable() {
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex items-center gap-2">
|
<div className="flex items-center gap-2">
|
||||||
{/* <SettingsIcon className="h-6 w-6 text-gray-500" /> */}
|
<SettingsIcon className="h-6 w-6 text-gray-500" />
|
||||||
{/* <Button variant="outline" size="sm" onClick={checkWorkflowStatus}>
|
{/* <Button variant="outline" size="sm" onClick={checkWorkflowStatus}>
|
||||||
Check Workflow Status
|
Check Workflow Status
|
||||||
</Button> */}
|
</Button> */}
|
||||||
|
|
|
||||||
|
|
@ -137,8 +137,8 @@ export default function Header() {
|
||||||
}, [bookmarkedIds]);
|
}, [bookmarkedIds]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<section className="max-w-[1350px] mx-auto px-4">
|
|
||||||
<RevealR>
|
<RevealR>
|
||||||
|
<section className="max-w-[1350px] mx-auto px-4">
|
||||||
<div className="flex flex-col lg:flex-row gap-6 py-6">
|
<div className="flex flex-col lg:flex-row gap-6 py-6">
|
||||||
{data.length > 0 && (
|
{data.length > 0 && (
|
||||||
<Card
|
<Card
|
||||||
|
|
@ -150,6 +150,7 @@ export default function Header() {
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<div className="grid grid-cols-1 sm:grid-cols-2 gap-4 w-full">
|
<div className="grid grid-cols-1 sm:grid-cols-2 gap-4 w-full">
|
||||||
{data.slice(1, 5).map((item) => (
|
{data.slice(1, 5).map((item) => (
|
||||||
<Card
|
<Card
|
||||||
|
|
@ -163,7 +164,6 @@ export default function Header() {
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</RevealR>
|
|
||||||
|
|
||||||
<div className="relative w-full h-48 sm:h-64 md:h-80 lg:h-[460px] mt-4 rounded-xl overflow-hidden">
|
<div className="relative w-full h-48 sm:h-64 md:h-80 lg:h-[460px] mt-4 rounded-xl overflow-hidden">
|
||||||
<Swiper
|
<Swiper
|
||||||
|
|
@ -201,6 +201,7 @@ export default function Header() {
|
||||||
</Swiper>
|
</Swiper>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
</RevealR>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -310,7 +311,7 @@ function Card({
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
// <RevealL>
|
<RevealL>
|
||||||
<div
|
<div
|
||||||
className={`rounded-xl overflow-hidden shadow hover:shadow-lg transition-all bg-white dark:bg-black dark:border dark:border-slate-50 ${
|
className={`rounded-xl overflow-hidden shadow hover:shadow-lg transition-all bg-white dark:bg-black dark:border dark:border-slate-50 ${
|
||||||
isBig
|
isBig
|
||||||
|
|
@ -395,7 +396,7 @@ function Card({
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
// </RevealL>
|
</RevealL>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
14
lib/menus.ts
14
lib/menus.ts
|
|
@ -238,13 +238,13 @@ export function getMenuList(pathname: string, t: any): Group[] {
|
||||||
icon: "heroicons:arrow-trending-up",
|
icon: "heroicons:arrow-trending-up",
|
||||||
children: [],
|
children: [],
|
||||||
},
|
},
|
||||||
// {
|
{
|
||||||
// href: "/admin/settings/tag",
|
href: "/admin/settings/tag",
|
||||||
// label: "Tag",
|
label: "Tag",
|
||||||
// active: pathname === "/admin/settings/tag",
|
active: pathname === "/admin/settings/tag",
|
||||||
// icon: "heroicons:arrow-trending-up",
|
icon: "heroicons:arrow-trending-up",
|
||||||
// children: [],
|
children: [],
|
||||||
// },
|
},
|
||||||
{
|
{
|
||||||
href: "/admin/settings/banner",
|
href: "/admin/settings/banner",
|
||||||
label: "Banner",
|
label: "Banner",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue