main
Last change
on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
896 bytes
|
Rev | Line | |
---|
[d565449] | 1 | import React from "react";
|
---|
| 2 | import "../../../App.css";
|
---|
| 3 | import { Button } from "./Button";
|
---|
| 4 | import "./HeroSection.css";
|
---|
| 5 | import { Link } from "react-router-dom";
|
---|
| 6 |
|
---|
| 7 | function HeroSection() {
|
---|
| 8 | return (
|
---|
| 9 | <div className="hero-container">
|
---|
| 10 | <h1>Map Your World</h1>
|
---|
| 11 | <p>Create and explore detailed indoor maps.</p>
|
---|
| 12 | <div className="hero-btns">
|
---|
| 13 | <Link to="/Maps/FinkiMaps/Draw">
|
---|
| 14 | <Button className="btns" buttonStyle="btn--outline" buttonSize="btn--large">
|
---|
| 15 | Create maps
|
---|
| 16 | </Button>
|
---|
| 17 | </Link>
|
---|
| 18 | <Link to="/Maps">
|
---|
| 19 | <Button
|
---|
| 20 | className="btns"
|
---|
| 21 | buttonStyle="btn--primary"
|
---|
| 22 | buttonSize="btn--large"
|
---|
| 23 | onClick={console.log("hey")}
|
---|
| 24 | >
|
---|
| 25 | Browse Maps <i className="far fa-play-circle" />
|
---|
| 26 | </Button>
|
---|
| 27 | </Link>
|
---|
| 28 | </div>
|
---|
| 29 | </div>
|
---|
| 30 | );
|
---|
| 31 | }
|
---|
| 32 |
|
---|
| 33 | export default HeroSection;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.