72 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
<template>
 | 
						|
  <app-container>
 | 
						|
    <v-row>
 | 
						|
      <v-col cols="12" class="text-center">
 | 
						|
        <p class="headline">Our mission is to deliver simple solutions for complex problems.</p>
 | 
						|
      </v-col>
 | 
						|
    </v-row>
 | 
						|
 | 
						|
    <v-row class="justify-center">
 | 
						|
      <v-col cols="12" lg="8">
 | 
						|
        <v-card dark>
 | 
						|
          <v-card-text class="about-quote">
 | 
						|
            <v-row class="align-center">
 | 
						|
              <v-col cols="auto">
 | 
						|
                <img src="/img/rocket-512.png" width="150">
 | 
						|
              </v-col>
 | 
						|
              <v-col class="text-center">
 | 
						|
                <p class="mb-0">“Any darn fool can make something complex;<br>It takes a genius to make something simple.”</p>
 | 
						|
                <br>
 | 
						|
                <p class="ml-5">-- Albert Einstein</p>
 | 
						|
              </v-col>
 | 
						|
            </v-row>
 | 
						|
          </v-card-text>
 | 
						|
        </v-card>
 | 
						|
      </v-col>
 | 
						|
    </v-row>
 | 
						|
 | 
						|
    <v-row>
 | 
						|
      <v-col>
 | 
						|
        <v-divider/>
 | 
						|
      </v-col>
 | 
						|
    </v-row>
 | 
						|
 | 
						|
    <v-row class="justify-center">
 | 
						|
      <v-col cols="12" class="text-center">
 | 
						|
        <h1 class="display-1">The Team</h1>
 | 
						|
      </v-col>
 | 
						|
 | 
						|
      <v-col cols="12" lg="9">
 | 
						|
        <v-card>
 | 
						|
          <v-container>
 | 
						|
            <v-row class="align-center">
 | 
						|
              <v-col cols="12" md="3" class="text-center">
 | 
						|
                <img src="/img/jeff-snow.jpg" />
 | 
						|
              </v-col>
 | 
						|
 | 
						|
              <v-col cols="12" md="9">
 | 
						|
                <h1>Jeff</h1>
 | 
						|
                <p class="person_desc">My name is Jeff Russo. I am the founder of Simple Systems, LLC. I've been a software engineer for about a decade, and I'm still passionate about it!</p>
 | 
						|
                <p class="person_desc">I've worked at several companies in my career. Some were three man startup teams, and some were fortune 50 enterprises. At each job, I learned many things, and now I can apply that knowledge to my own company! I pursue excellence in all that I do, and this adventure will be no different.</p>
 | 
						|
                <p class="person_desc">The biggest thing I saw at all levels of business was unnecessary complexity. It demoralizes teams and can bring your software to a crashing halt. My mission is to deliver software that is simple, to both the business, and the engineers that have to use it.</p>
 | 
						|
              </v-col>
 | 
						|
            </v-row>
 | 
						|
          </v-container>
 | 
						|
        </v-card>
 | 
						|
      </v-col>
 | 
						|
    </v-row>
 | 
						|
  </app-container>
 | 
						|
</template>
 | 
						|
 | 
						|
<style>
 | 
						|
  .about-quote, .person_desc {
 | 
						|
    font-size: large;
 | 
						|
  }
 | 
						|
 | 
						|
  .person_desc {
 | 
						|
    text-indent: 2.0em;
 | 
						|
    text-align: justify;
 | 
						|
    text-justify: inter-word;
 | 
						|
  }
 | 
						|
</style>
 |