import React, {Component} from 'react'; import { Testimonial } from './assests/data/about'; class About extends React.Component { render() { return(
{/* PRELOADER SPINNER ============================================= */}
{/* PAGE CONTENT ============================================= */}
{/* PAGE HERO ============================================= */}
{/* Title */}

{heroInfo.title.normal} {heroInfo.title.bold}

{/* Text */}

{heroInfo.desc}

{/* End row */}
{/* End container */}
{/* END PAGE HERO */} {/* ABOUT-2 ============================================= */}
{/* TEXT BLOCK */}
{/* SMALL TITLE */}
{aboutDesc.upperSection.title}
{/* LEFT COLUMN */}
{/* Title */}
{aboutDesc.upperSection.vision.title}
{/* Text */}

{aboutDesc.upperSection.vision.text}

{/* END LEFT COLUMN */} {/* RIGHT COLUMN */}
{/* Title */}
{aboutDesc.upperSection.mission.title}
{/* List */} {/* Text */}

{aboutDesc.upperSection.mission.text}

{/* End List */}
{/* END RIGHT COLUMN */}
{/* END TEXT BLOCK */} {/* IMAGE BLOCK */}
content-image
{/* TEXT BLOCK */}
{aboutDesc.lowerSection.caption.first}
{aboutDesc.lowerSection.caption.second}
{/* LEFT COLUMN */}
{/* Title */} {/*
We care about the details
*/} {/* Text */}

{aboutDesc.lowerSection.left.first}
{aboutDesc.lowerSection.left.second}

{/* END LEFT COLUMN */} {/* RIGHT COLUMN */}
{/* Title */} {/*
With knowledge, skill and hard work
*/} {/* List */}

{aboutDesc.lowerSection.right}

{/* End List */}
{/* END RIGHT COLUMN */}
{/* END TEXT BLOCK */} {/* BUTTON */}
{/* END BUTTON */}
{/* End container */}
{/* END ABOUT-2 */} {/* TESTIMONIALS-1 ============================================= */}
{/* SECTION TITLE */}

{testimonials.tag}

{/* Title */}

{testimonials.title}

{/* Text */} {/*

Our Team is as vibrating and diversified as your urban life. */} {/*

*/}
{/* TESTIMONIALS CONTENT */}
{Testimonial.map(({title, desc, name, image}, idx) => ( <> {/* TESTIMONIAL #1 */}
{/* App Rating */} {/*
*/}
{/* Title */}
{title}
{/* Testimonial Text */}
{/* Text */}

{desc}

{/* Testimonial Author */}
{name}
{/* END TESTIMONIAL #1 */} ))}
{/* End container */}
{/* END TESTIMONIALS-1 */} {/* CONTENT-2 ============================================= */}
{/* IMAGE BLOCK */}
content-image
{/* TEXT BLOCK */}
{/* Section ID */} {valueInfo.id}
{/* Title */}

{valueInfo.title1}

{/* Text */}

{valueInfo.text1}

{/* Title */}

{valueInfo.title2}

{/* Text */}

{valueInfo.text2}

{/* Title */}

{valueInfo.title3}

{/* Text */}

{valueInfo.text3}

{/* END TEXT BLOCK */}
{/* End row */}
{/* End container */}
{/* END CONTENT-2 */} {/* SECTION DIVIDER ============================================= */}
{/* TEAM-1 ============================================= */}
{/* SECTION TITLE */}
{/* Title */}

{team.tag}

{/* Text */}

{team.title}

{/* TEAM MEMBERS HOLDER */}
{Testimonial.map(({name, title, image, link: {domain, href}}, idx) => ( <> {/* TEAM MEMBER #1 */}
{/* Team Member Photo */}
team-member-photo
{/* Team Member Data */}
{name}

{title}

@{domain}
{/* END TEAM MEMBER #1 */} ))}
{/* End row */}
{/* TEAM MEMBERS HOLDER */}
{/* End container */}
{/* END TEAM-1 */} {/* NEWSLETTER-1 ============================================= */}
{/* SECTION TITLE */}
{/* Section ID */} {newsletter.tag} {/* Title */}

{newsletter.title}

{/* NEWSLETTER FORM */}
{/* Newsletter Form Notification */}
{/* END NEWSLETTER FORM */}
{/* End row */}
{/* End newsletter-holder */}
{/* End container */}
{/* END NEWSLETTER-1 */}
{/* END PAGE CONTENT */}
) } } export default About // PAGE TEXT/CONTENT VARIABLES //Hero Section let heroInfo = { title: { normal: 'No, we are ', //leave a space after writing for proper indentation bold: 'not just another travel app.' }, desc: "Float is a global Start Up working on improving everyone’s city life." } // About Section let aboutDesc = { upperSection: { title: "With AI and other unique technology we want to help and encourage people to improve their travel behavior for the better. Whether you want to save time, save money, reduce your carbon footprint, look for great deals or just explore your hood - we’ve got you covered.", vision: { title: 'OUR VISION', text: "Improve quality of life for the world's population by building the future global transportation platform. Increasing accessibility and personal choices, while reducing travel time, traffic congestion, pollution, and loss to local GDP." }, mission: { title: "OUR MISSION", text: "We empower travelers to move easier and faster by analyzing their past trips, with traffic and external factors - allowing them to customize travel and receive rewards for sharing their data for the greater good." } }, lowerSection: { caption: { first: "MADE FOR YOU", second: "Created for urbanists" }, left: { first: "A classic day in your urban life:", second: "You drive to work, drive to the store, maybe drive your kids to school, drive back home, meet some friends if there is little time left. Distances are so vast, it takes forever to get anywhere and there’s little chance for spontaneity and diversity in daily routines - Vibrating urban Citylife is just passing you by." }, right: "You are interested in public infrastructure and promote eco-friendly alternatives - however keeping track of what is the fastest, cheapest and greenest way to get somewhere isn’t easily done while being in a rush. We feel you - we are here to support you with by finding a better way to go." }, cta: "Read the Reviews" } // Testimonials Section let testimonials = { tag: 'MADE FOR US', title:'Created from urbanists' } // Values Section let valueInfo = { id: 'Values', title1: 'Put the User first', text1: 'We are fully independent. We will only show you recommendations, tips, and deals customized for you.', title2: 'Together is Better', text2: 'AI and personal behavior are better together. Together we can make better decisions.', title3: 'There is no planet B', text3: 'There are more and more green alternatives especially in transportation we want to encourage everyone to use these.' } // Brand Section let brands = 'You might know Float from:' // Team Section let team = { tag: 'One Team Many Talents', title: 'Our Team is as vibrating and diversified as your urban life.', } // Newsletter Section let newsletter = { tag: 'Subscribe to Our Newsletter', title: 'Stay up to date with our news, ideas and updates', cta: 'Subscribe Now' }