-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
48e48f0
commit a856992
Showing
1 changed file
with
3 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |