import Project from 'components/ui/Project'; import ButtonLink from 'components/ui/ButtonLink'; import Button from 'components/ui/Button'; import TextInput from 'components/ui/TextInput'; import Page from 'components/ui/Page'; import './home.scss'; import Logo from 'images/logo.svg'; import ImageRoland from 'images/roland-bernard.jpg'; import ImageDaniel from 'images/daniel-planoetscher.jpg'; export default function Home() { return (<> <Page> <section className="hero-section" id="hero"> <div className="hero-container"> <header> <a href="index.html"> <img src={Logo} alt="Logo" width="100" height="35" /> </a> <nav> <a href="#hero">Home</a> <a href="#team">Team</a> <a href="#contact">Contact</a> </nav> </header> <div className="preview-container"> <div className="preview-phone"> <div className="inner"> </div> </div> </div> <div className="content-container"> <div className="text-container"> <h1>ryoko</h1> <p>Are you feeling lost with your tasks? Maximize your productivity now with ryoko.</p> <div className="button-container"> <ButtonLink href="/tasks" routing={true}>Get started</ButtonLink> </div> </div> </div> </div> </section> <section className="intro-section" id="intro"> <div className="content-container"> <div className="intro-container"> <div className="text-container"> <h2 className="left">Plan your projects like a journey!</h2> <p> Do you want to boost your productivity and agility of your development? <br /> With ryoko you are able to effectively plan your tasks and manage your projects. It is build with developers in mind and facilitates effective collaboration. </p> </div> <div className="preview-container"> <div className="project-overview"> <div className="small-1 project-small"> <Project status="open" name="Hello world!" percent={5} /> </div> <div className="small-2 project-small"> <Project status="suspended" name="FizzBuzz" percent={33} /> </div> <div className="large project-large"> <Project status="open" name="Array summation" percent={78} /> </div> </div> </div> </div> </div> </section> <section className="feature-section"> <div className="content-container feature-container"> <h2>Revolutionize your productivity</h2> <div className="feature-list"> <div className="feature-item"> <span className="feature-icon material-icons">query_stats</span> <h3 className="feature-title">Analyze your productivity</h3> <div className="feature-description"> Find your <strong>weaknesses and strengths</strong> by analyzing graphs </div> </div> <div className="feature-item"> <span className="feature-icon material-icons">event</span> <h3 className="feature-title">Automatic timetables</h3> <div className="feature-description"> Generate your automatic timetables based on <strong>priorities and depencies</strong> of your tasks </div> </div> <div className="feature-item"> <span className="feature-icon material-icons">group</span> <h3 className="feature-title">Teambased</h3> <div className="feature-description"> Distribute task within your Teams based on <strong>profession and difficulty</strong> </div> </div> </div> </div> </section> <section className="team-section" id="team"> <div className="content-container team-container"> <h2>Our Team</h2> <p> People are what makes a project great, and here are the people that make us great. </p> <div className="team-list"> <div className="team-member"> <img className="team-member-image" src={ImageDaniel} width="200" height="200" alt="Daniel Planötscher" /> <div className="team-member-info"> <div className="team-member-title">Web Developer</div> <h3 className="team-member-name">Daniel Planötscher</h3> <div className="team-member-description"> Besides studying Computer Science, Daniel also enjoys taking photos and designing user interfaces for hobby projects, which is why he focuses on the FrontEnd of ryoko. Furthermore, he brings significant industry experience working as a web developer using state of the art tools and programming techniques. He is involved in the creation of modern websites for dozens of clients with advanced requirements. </div> </div> </div> <div className="team-member"> <img className="team-member-image" src={ImageRoland} width="200" height="200" alt="Roland Bernard" /> <div className="team-member-info"> <h4 className="team-member-title">Software Engineer</h4> <h3 className="team-member-name">Roland Bernard</h3> <div className="team-member-description"> Studying Computer Science and participating in Competitive Programming Competitions, Roland constitutes a integral part of our development team at ryoko. Like all members of our team he also has experience in the industry, mainly working on business management systems and software for the financial sector. He is also experienced in the implementation of development tools and infrastructure components. </div> </div> </div> </div> </div> </section> <section className="contact-section darker" id="contact"> <div className="content-container contact-container"> <h2>Get in touch</h2> <p> Do you still have a question? Just contact us directly and we will be glad to help you resolve the issue. </p> <form className="contact-form" action="mailto:dplanoetscher@unibz.it" method="GET"> <TextInput label="Fistname" name="firstname" /> <TextInput label="Lastname" name="lastname" /> <TextInput label="Email" name="email" type="email" /> <TextInput label="Subject" name="subject" /> <TextInput label="Message" name="message" type="textarea" /> <div className="button-container"> <Button type="submit">Send</Button> </div> </form> </div> </section> <footer> <div className="content-container footer-container"> <div className="footer-copyright"> <img src={Logo} className="logo" alt="Logo" width="70" height="24" /> <p> © <a href="index.html">ryoko</a>, 2021 </p> <p> All rights reserved. </p> </div> <div className="footer-nav"> <a href="#hero">Home</a> <a href="#team">Team</a> <a href="#contact">Contact</a> </div> </div> </footer> </Page> <div className="background-container"> <div className="bubble secondary" style={{ top: '0', right: '0' }}></div> <div className="bubble primary" style={{ top: '20%', left: '0' }}></div> <div className="bubble accent" style={{ top: '32%', right: '5%' }}></div> <div className="bubble primary" style={{ top: '50%', right: '20%' }}></div> <div className="bubble secondary" style={{ top: '65%', left: '-15%' }}></div> <div className="bubble accent" style={{ bottom: '5%', left: '10%' }}></div> <div className="bubble primary" style={{ bottom: '0%', right: '0%' }}></div> </div> </>); }