Align footer text to the left in NavBarMenu component

This commit is contained in:
Nawaz Dhandala
2026-01-08 14:23:27 +00:00
parent f2520750fc
commit c40e18b2ed
2 changed files with 2 additions and 2 deletions

View File

@@ -68,7 +68,7 @@ const NavBarMenu: FunctionComponent<ComponentProps> = (
className="h-5 w-5 text-gray-700"
/>
</div>
<div className="flex-1 min-w-0">
<div className="flex-1 min-w-0 text-left">
<p className="text-sm font-medium text-gray-900">
{props.footer.title}
</p>

View File

@@ -22,7 +22,7 @@ const NavBarMenuItem: FunctionComponent<ComponentProps> = (
// Map color names to their respective Tailwind classes
const colorClasses: Record<
string,
{ bg: string; ring: string; hoverBg: string; hoverRing: string }
{ Please makbg: string; ring: string; hoverBg: string; hoverRing: string }
> = {
purple: {
bg: "bg-purple-50",