31 lines
605 B
TypeScript
31 lines
605 B
TypeScript
import type { ThemeConfig } from '@docusaurus/preset-classic';
|
|
|
|
export const footer: ThemeConfig['footer'] = {
|
|
style: 'dark',
|
|
links: [
|
|
{
|
|
title: 'Veda Nile',
|
|
items: [
|
|
{
|
|
label: 'Home',
|
|
to: '/',
|
|
},
|
|
{
|
|
label: 'Register',
|
|
to: '/owner/shareholder',
|
|
},
|
|
],
|
|
},
|
|
{
|
|
title: 'Website',
|
|
items: [
|
|
{
|
|
label: 'Veda Egypt',
|
|
to: 'https://www.veda-egypt.com/',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
copyright: `Copyright © ${new Date().getFullYear()} Veda Egypt`,
|
|
};
|