-
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.
Merge pull request #50 from acmutd/feature/landing-page
feature/landing-page
- Loading branch information
Showing
3 changed files
with
28 additions
and
1 deletion.
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
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
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import React from "react"; | ||
import Navbar from "../Layout/NavBar"; | ||
import { Container } from "react-bootstrap"; | ||
|
||
const LandingPage = () => { | ||
return ( | ||
<div> | ||
<Navbar /> | ||
<Container fluid> | ||
<div className="m-5 p-5 floating-icon"> | ||
<h1>Welcome to TrackIT</h1> | ||
<p> | ||
Interactive real-time solution to remotely delivering event content and tracking user progress | ||
</p> | ||
</div> | ||
</Container> | ||
</div> | ||
); | ||
}; | ||
|
||
export default LandingPage; |