source: imaps-frontend/src/pages/IMaps/components/HeroSection.jsx@ d565449

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
RevLine 
[d565449]1import React from "react";
2import "../../../App.css";
3import { Button } from "./Button";
4import "./HeroSection.css";
5import { Link } from "react-router-dom";
6
7function 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
33export default HeroSection;
Note: See TracBrowser for help on using the repository browser.