data.source.js
1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import React from 'react';
export const Nav00DataSource = {
wrapper: { className: 'header0 home-page-wrapper' },
page: { className: 'home-page' },
logo: {
className: 'header0-logo',
children: 'https://os.alipayobjects.com/rmsportal/mlcYmsRilwraoAe.svg',
},
Menu: {
className: 'header0-menu',
children: [
{ name: 'item0', a: { children: '导航一', href: '/' } },
{ name: 'item1', a: { children: '导航二', href: '/page2' } },
{ name: 'item2', a: { children: '导航三', href: '' } },
{ name: 'item3', a: { children: '导航四', href: '' } },
],
},
mobileMenu: { className: 'header0-mobile-menu' },
};
export const Footer00DataSource = {
wrapper: { className: 'home-page-wrapper footer0-wrapper' },
OverPack: { className: 'home-page footer0', playScale: 0.05 },
copyright: {
className: 'copyright',
children: (
<span>
©2018
{' '}
<a href="https://motion.ant.design">Ant Motion</a>
{' '}
All Rights Reserved
</span>
),
},
};