main
Last change
on this file since 0c6b92a was 0c6b92a, checked in by stefan toskovski <stefantoska84@…>, 5 weeks ago |
Pred finalna verzija
|
-
Property mode
set to
100644
|
File size:
975 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 (
|
---|
[0c6b92a] | 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="/myMaps">
|
---|
| 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 | >
|
---|
| 24 | Browse Maps <i className="far fa-play-circle"/>
|
---|
| 25 | </Button>
|
---|
| 26 | </Link>
|
---|
| 27 | </div>
|
---|
[d565449] | 28 | </div>
|
---|
| 29 | );
|
---|
| 30 | }
|
---|
| 31 |
|
---|
| 32 | export default HeroSection;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.