feat: ui changes for footer

This commit is contained in:
2025-04-12 20:40:12 +05:30
parent fe02779193
commit 8e6bba6c8d
5 changed files with 10 additions and 8 deletions

BIN
public/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

View File

@@ -15,8 +15,8 @@ export default function AdminLayout({
<SidebarTrigger />
<div className="w-full">{children}</div>
</div>
<p className="justify-self-end w-full text-sm text-center bg-emerald-700 text-white ">
Powered by Aurelion Future Forge
<p className="flex items-center gap-5 justify-center justify-self-end w-full text-sm text-center bg-[#f5f6fa] py-2 font-medium text-gray-700 ">
Powered by <img src="/logo.png" className="w-32 aspect-auto" alt="" />
</p>
</main>
</SidebarProvider>

View File

@@ -14,8 +14,8 @@ export default function AdminLayout({
<SidebarTrigger />
<div className="w-full">{children}</div>
</div>
<p className="justify-self-end w-full text-sm text-center bg-emerald-700 text-white ">
Powered by Aurelion Future Forge
<p className="flex items-center gap-5 justify-center justify-self-end w-full text-sm text-center bg-[#f5f6fa] py-2 font-medium text-gray-700 ">
Powered by <img src="/logo.png" className="w-32 aspect-auto" alt="" />
</p>
</main>
</SidebarProvider>

View File

@@ -11,8 +11,8 @@ export default function Layout({ children }: { children: React.ReactNode }) {
<SidebarTrigger />
<div className="w-full">{children}</div>
</div>
<p className="justify-self-end w-full text-sm text-center bg-emerald-700 text-white ">
Powered by Aurelion Future Forge
<p className="flex items-center gap-5 justify-center justify-self-end w-full text-sm text-center bg-[#f5f6fa] py-2 font-medium text-gray-700 ">
Powered by <img src="/logo.png" className="w-32 aspect-auto" alt="" />
</p>
</main>
</SidebarProvider>

View File

@@ -206,8 +206,10 @@ export default function Home() {
</div>
</div>
<div className="absolute bottom-4 text-center text-xs text-gray-500">
Powered by Aurelion Future Forge
<div className="absolute bottom-0 w-full text-center text-xs text-gray-500">
<p className="flex items-center gap-5 justify-center justify-self-end w-full text-sm text-center bg-[#f5f6fa] py-2 font-medium text-gray-700 ">
Powered by <img src="/logo.png" className="w-32 aspect-auto" alt="" />
</p>
</div>
</div>
);