All files / pages HomePage.js

100% Statements 1/1
100% Branches 0/0
100% Functions 1/1
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21      7x                                  
import BasicLayout from "main/layouts/BasicLayout/BasicLayout";
 
export default function HomePage() {
  return (
    <BasicLayout>
      <div className="pt-2">
      <h1 data-testid= "welcome-header" style = {{ padding: "20px"}}>Welcome to <b data-testid = "UCSB" style = {{backgroundColor:"#003660", padding: "0px 10px"}}> <font data-testid = "white" color = "#FFFFFF"  >UCSB</font></b> GauchoRide!</h1>
      <div data-testid = "about-application" style={{margin:"0px 20px", backgroundColor:"#d6d2d2", padding: "20px"}}>
      <h3>About this application</h3>
        <p>
        This app is being built by the students of CMPSC 156 at UCSB to assist an effort to provide transportation for UCSB students with mobility issues to be better able to get to and from class.
 
        </p>
        <p><i>The first iteration of this app was created with a simple goal in mind: to make navigating to and from school as quick and easy as possible by connecting students in need with available drivers.
          As the app progresses, we hope to add new features and make improvements for a better overall experience for our users.
          </i>  </p>
      </div>
      </div>
    </BasicLayout>
  )
}