Skip to content

Commit

Permalink
bx - fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
XuperBryan authored Jun 5, 2021
1 parent 48e48f0 commit a856992
Showing 1 changed file with 3 additions and 21 deletions.
24 changes: 3 additions & 21 deletions src/view/Home.js
Original file line number Diff line number Diff line change
@@ -1,36 +1,18 @@
import React from 'react';
import './Home.css';
import { Card, Tab, Tabs, Nav } from 'react-bootstrap';
import { Tab, Tabs, Nav } from 'react-bootstrap';


const Home = () => {
return (
<>
<div className="homepage" data-testid="welcome">
<h1 className="animate__animated animate__backInDown">WELCOME</h1>
<h2 className="animate__animated animate__backInDown">to the USCB Recreation Center Activity Tracker</h2>
<h2 className="animate__animated animate__backInDown">to the UCSB Recreation Center Activity Tracker</h2>
<Nav.Link href='/activity'><button className="animate__animated animate__backInDown">Track Activity</button></Nav.Link>
</div>
<Card>
<Tabs>
<Tab eventKey='Monday' profile='Monday'>
</Tab>
<Tab eventKey='Tuesday' profile='Tuesday'>
</Tab>
<Tab eventKey='Wednesday' profile='Wednesday'>
</Tab>
<Tab eventKey='Thursday' profile='Thursday'>
</Tab>
<Tab eventKey='Friday' profile='Friday'>
</Tab>
<Tab eventKey='Saturday' profile='Saturday'>
</Tab>
<Tab eventKey='Sunday' profile='Sunday'>
</Tab>
</Tabs>
</Card>
</>
);
}

export default Home;
export default Home;

0 comments on commit a856992

Please sign in to comment.