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
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
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`,
|
|
|
|
};
|