42 lines
863 B
TypeScript
42 lines
863 B
TypeScript
import React from 'react';
|
|
import Content from '../components/content'
|
|
import backgroundPic from '../public/unspash_image.jpg'
|
|
|
|
export default [
|
|
{
|
|
name: 'INTRO',
|
|
url: '#intro',
|
|
content: <Content
|
|
title='Intro'
|
|
heroImgSrc={backgroundPic}
|
|
description={"Intro Section about okechi"}
|
|
/>
|
|
},
|
|
{
|
|
name: 'WORK',
|
|
url: '#work',
|
|
content: <Content
|
|
title='Work'
|
|
heroImgSrc={backgroundPic}
|
|
description={"Work Section about okechi"}
|
|
/>
|
|
},
|
|
{
|
|
name: 'ABOUT',
|
|
url: '#about',
|
|
content: <Content
|
|
title='About'
|
|
heroImgSrc={backgroundPic}
|
|
description={"About Section about okechi"}
|
|
/>
|
|
},
|
|
{
|
|
name: 'CONTACT',
|
|
url: '#contact',
|
|
content: <Content
|
|
title='Contact'
|
|
heroImgSrc={backgroundPic}
|
|
description={"Contact Section about okechi"}
|
|
/>
|
|
}
|
|
]; |