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:
1.7 KB
|
Line | |
---|
1 | import React from "react";
|
---|
2 | import "./Cards.css";
|
---|
3 | import CardItem from "./CardItem";
|
---|
4 | import img9 from "../images/img-9.jpg";
|
---|
5 | import img2 from "../images/img-2.jpg";
|
---|
6 | import img3 from "../images/img-3.jpg";
|
---|
7 | import img4 from "../images/img-4.jpg";
|
---|
8 | import img8 from "../images/img-8.jpg";
|
---|
9 |
|
---|
10 | function Cards() {
|
---|
11 | return (
|
---|
12 | <div className="cards">
|
---|
13 | <h1>iMaps offers:</h1>
|
---|
14 | <div className="cards__container">
|
---|
15 | <div className="cards__wrapper">
|
---|
16 | <ul className="cards__items">
|
---|
17 | <CardItem
|
---|
18 | src={img9}
|
---|
19 | text="Create intricate floor plans for your building with precision and ease."
|
---|
20 | label="Create"
|
---|
21 | path="/services"
|
---|
22 | />
|
---|
23 | <CardItem
|
---|
24 | src={img2}
|
---|
25 | text="Explore and navigate through complex building layouts seamlessly."
|
---|
26 | label="Explore"
|
---|
27 | path="/services"
|
---|
28 | />
|
---|
29 | </ul>
|
---|
30 | <ul className="cards__items">
|
---|
31 | <CardItem
|
---|
32 | src={img3}
|
---|
33 | text="Add custom icons, labels, and markers to personalize your indoor maps."
|
---|
34 | label="Customize"
|
---|
35 | path="/services"
|
---|
36 | />
|
---|
37 | <CardItem
|
---|
38 | src={img4}
|
---|
39 | text="Ensure accessibility by mapping out routes and facilities for all users."
|
---|
40 | label="Accessibility"
|
---|
41 | path="/products"
|
---|
42 | />
|
---|
43 | <CardItem
|
---|
44 | src={img8}
|
---|
45 | text="Share your maps with others and collaborate in real-time for efficient space planning."
|
---|
46 | label="Collaboration"
|
---|
47 | path="/sign-up"
|
---|
48 | />
|
---|
49 | </ul>
|
---|
50 | </div>
|
---|
51 | </div>
|
---|
52 | </div>
|
---|
53 | );
|
---|
54 | }
|
---|
55 |
|
---|
56 | export default Cards;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.