Total Complexity | 2 |
Complexity/F | 1 |
Lines of Code | 20 |
Function Count | 2 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import EngineApp from '../../Framework/engine.js' |
||
2 | |||
3 | let eng = new EngineApp() |
||
4 | function AboutPage(){ |
||
5 | eng.componentsEngine.createComponent("article",AboutRender()) |
||
6 | eng.componentsEngine.renderComponent("dinamic-Article","article") |
||
7 | } |
||
8 | function AboutRender(){ |
||
9 | return "<br><br><article class='articleComp container'><h1>About our team!</h1>"+ |
||
10 | "<div class='m-1'>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Laudantium suscipit dolorum vero consectetur at architecto corporis fugit eos sunt deleniti, dolor mollitia tempora dolores, repellendus voluptatum vel temporibus sapiente cupiditate?</div>"+ |
||
11 | "<br><div class='card aboutcard' style='width: 18rem;color='black''>"+ |
||
12 | "<div class='aboutCreator'><img class='aboutCreator' src='https://avatars2.githubusercontent.com/u/34559081?s=460&u=cb0712157640e18dea3c4bb479c861c59a28ef97&v=4'></div>"+ |
||
13 | "<div class='card-body><h1 class='card-title' style='font-size='10vh''> Felipe Katao </h1>"+ |
||
14 | "<h6 class='card-subtitle mb-2 text-muted'>Developer</h6>"+ |
||
15 | "<p class='card-text'>Lorem lkore sdhsdbasjdsj loren lorne lorne loren klofnejd ate hfduendin jmaimnhxjd </p>"+ |
||
16 | "</div>"+ |
||
17 | "</article>" |
||
18 | } |
||
19 | |||
20 | export default AboutPage |