🐛 fix(ui): Improve dashboard layout and enhance button functionality; open checkout URLs in a new tab

This commit is contained in:
web@ppanel
2025-03-10 18:32:07 +07:00
parent 136a1abd8b
commit fc0da761b5
5 changed files with 37 additions and 14 deletions
+8 -6
View File
@@ -67,12 +67,14 @@ export default function Footer() {
</nav>
<div>
<strong className='text-foreground'>{site.site_name}</strong> © All rights reserved.
<Link href='/tos' className='ml-2 underline'>
{t('tos')}
</Link>
<Link href='/privacy-policy' className='ml-2 underline'>
{t('privacyPolicy')}
</Link>
<div>
<Link href='/tos' className='underline'>
{t('tos')}
</Link>
<Link href='/privacy-policy' className='ml-2 underline'>
{t('privacyPolicy')}
</Link>
</div>
</div>
</div>
</footer>
+1 -1
View File
@@ -19,7 +19,7 @@ export default function Header() {
{site.site_logo && (
<Image src={site.site_logo} width={48} height={48} alt='logo' unoptimized />
)}
<span>{site.site_name}</span>
<span className=''>{site.site_name}</span>
</Link>
);
return (