You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.2 KiB
26 lines
1.2 KiB
import React, { Component } from 'react'; |
|
import NavigateNextIcon from '@material-ui/icons/NavigateNext'; |
|
import { Divider } from '@material-ui/core'; |
|
|
|
export default class FirstBio extends Component { |
|
render() { |
|
return( |
|
<> |
|
<p> |
|
لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده از طراحان گرافیک است. چاپگرها و متون بلکه روزنامه و مجله در ستون و سطرآنچنان که لازم است و برای شرایط فعلی تکنولوژی مورد نیاز و کاربردهای متنوع با هدف بهبود ابزارهای کاربردی میباشد. |
|
</p> |
|
<div style={{position: 'absolute', right : -5 }} onClick={() => this.props.setSection(1)}> |
|
<NavigateNextIcon style={{color : "#cfcfcf" , width : 50, height : 50, fontWeight : 900}} /> |
|
</div> |
|
<div className="three-dots d-flex" style={{width: 60 , height: 20, position : 'absolute', bottom : 20}}> |
|
<div> |
|
</div> |
|
<div> |
|
</div> |
|
<div style={{backgroundColor : 'white', width : 11, height : 11}}> |
|
</div> |
|
</div> |
|
</> |
|
); |
|
} |
|
} |