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