fix(dns): implement DNS routes with navigation and localization support

This commit is contained in:
GitHub Actions
2026-01-08 17:08:47 +00:00
parent f40e4805d6
commit eba63d42d1
13 changed files with 689 additions and 87 deletions

View File

@@ -63,7 +63,10 @@ export default function Layout({ children }: LayoutProps) {
{ name: t('navigation.remoteServers'), path: '/remote-servers', icon: '🖥️' },
{ name: t('navigation.domains'), path: '/domains', icon: '🌍' },
{ name: t('navigation.certificates'), path: '/certificates', icon: '🔒' },
{ name: t('navigation.dnsProviders'), path: '/dns-providers', icon: '☁️' },
{ name: t('navigation.dns'), path: '/dns', icon: '☁️', children: [
{ name: t('navigation.dnsProviders'), path: '/dns/providers', icon: '🧭' },
{ name: t('navigation.plugins'), path: '/dns/plugins', icon: '🔌' },
] },
{ name: t('navigation.uptime'), path: '/uptime', icon: '📈' },
{ name: t('navigation.security'), path: '/security', icon: '🛡️', children: [
{ name: t('navigation.dashboard'), path: '/security', icon: '🛡️' },
@@ -86,14 +89,6 @@ export default function Layout({ children }: LayoutProps) {
{ name: t('navigation.accountManagement'), path: '/settings/account-management', icon: '👥' },
]
},
{
name: t('navigation.admin'),
path: '/admin',
icon: '👑',
children: [
{ name: t('navigation.plugins'), path: '/admin/plugins', icon: '🔌' },
]
},
{
name: t('navigation.tasks'),
path: '/tasks',