File Manager - Dashboard Routes #2

Merged
ditorodev merged 14 commits from riobuenoDevelops/fileManager-dashboard into develop 2024-03-13 17:05:35 +00:00
1 changed files with 29 additions and 27 deletions
Showing only changes of commit 9b09f6854a - Show all commits

View File

@ -49,34 +49,36 @@ export const DashboardLayout = ({ children }: React.PropsWithChildren<{}>) => {
</Button> </Button>
</header> </header>
{children} <div className="flex-1">
{children}
<footer className="my-5"> <footer className="my-5">
<ul className="flex flex-row"> <ul className="flex flex-row">
<li> <li>
<Link to="https://discord.lumeweb.com"> <Link to="https://discord.lumeweb.com">
<Button <Button
variant={"link"} variant={"link"}
className="flex flex-row gap-x-2 text-input-placeholder" className="flex flex-row gap-x-2 text-input-placeholder"
> >
<img className="h-5" src={discordLogoPng} alt="Discord Logo" /> <img className="h-5" src={discordLogoPng} alt="Discord Logo" />
Connect with us Connect with us
</Button> </Button>
</Link> </Link>
</li> </li>
<li> <li>
<Link to="https://lumeweb.com"> <Link to="https://lumeweb.com">
<Button <Button
variant={"link"} variant={"link"}
className="flex flex-row gap-x-2 text-input-placeholder" className="flex flex-row gap-x-2 text-input-placeholder"
> >
<img className="h-5" src={lumeColorLogoPng} alt="Lume Logo" /> <img className="h-5" src={lumeColorLogoPng} alt="Lume Logo" />
Connect with us Connect with us
</Button> </Button>
</Link> </Link>
</li> </li>
</ul> </ul>
</footer> </footer>
</div>
</div> </div>
) )
} }