-
Notifications
You must be signed in to change notification settings - Fork 0
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
Andreas Lee-Norman
committed
Apr 7, 2020
1 parent
2d269e6
commit a147c68
Showing
5 changed files
with
537 additions
and
2 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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,66 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" /> | ||
<link | ||
rel="stylesheet" | ||
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" | ||
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" | ||
crossorigin="anonymous" | ||
/> | ||
<!-- Place this tag in your head or just before your close body tag. --> | ||
<link rel="stylesheet" href="styles.css" /> | ||
<title>React App</title> | ||
</head> | ||
<body> | ||
<noscript>You need to enable JavaScript to run this app.</noscript> | ||
|
||
<header> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-sm"> | ||
<img src="img/flymenu-reactjs.svg" class="img-fluid" alt="" /> | ||
<p class="version">v1.0</p> | ||
<a href="https://github.com/SubZane/flymenu-reactjs" class="github">Dowload on Github</a> | ||
</div> | ||
</div> | ||
</div> | ||
</header> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-sm"> | ||
<p class="intro"> | ||
flymenu-reactjs is an off-canvas menu component written in ReactJS with TypeScript and Styled Components. | ||
</p> | ||
<h1>About flymenu-reactjs</h1> | ||
<p> | ||
flymenu-reactjs is an off-canvas menu component written in ReactJS with TypeScript and Styled Components. | ||
</p> | ||
<h2>Getting started</h2> | ||
<p> | ||
Go to the Github page and follow instructions | ||
</p> | ||
<h2>Features</h2> | ||
<p> | ||
<ul> | ||
<li>Populated by JSON-data</li> | ||
<li>Customizable with diferent types of animation effects</li> | ||
<li>Extendable. Put anything in the off-canvas panel instead of the menu (if you wish)</li> | ||
</ul> | ||
</p> | ||
<h2>Demonstration</h2> | ||
<p>Use the round button in the bottom right corner to open up the menu</p> | ||
<div id="root"></div> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- Load React. --> | ||
<!-- Note: when deploying, replace "development.js" with "production.min.js". --> | ||
<script src="https://unpkg.com/react@16/umd/react.development.js" crossorigin></script> | ||
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js" crossorigin></script> | ||
|
||
<!-- Load our React component. --> | ||
<script src="../dist/main.js"></script> | ||
</body> | ||
</html> |
Binary file not shown.
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