docs_veda_strategic/navigation/footer.ts

31 lines
605 B
TypeScript
Raw Permalink Normal View History

2025-01-01 21:50:11 +00:00
import type { ThemeConfig } from '@docusaurus/preset-classic';
export const footer: ThemeConfig['footer'] = {
style: 'dark',
links: [
{
title: 'Veda Nile',
items: [
{
2025-01-02 17:52:49 +00:00
label: 'Home',
to: '/',
2025-01-01 21:50:11 +00:00
},
2025-01-12 20:25:43 +00:00
{
label: 'Register',
to: '/owner/shareholder',
},
2025-01-01 21:50:11 +00:00
],
},
{
title: 'Website',
items: [
{
2025-01-02 17:52:49 +00:00
label: 'Veda Egypt',
2025-01-01 21:50:11 +00:00
to: 'https://www.veda-egypt.com/',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Veda Egypt`,
};