webapp
58 строк · 1.7 Кб
1import React from 'react';2import './Cards.css';3import CardItem from './CardItem';4
5function Cards() {6return (7<div className='cards'>8<h1>Check out these EPIC Destinations!</h1>9<div className='cards__container'>10<div className='cards__wrapper'>11<ul className='cards__items'>12<CardItem13src='images/img-9.jpg'14text='Explore the hidden waterfall deep inside the Amazon Jungle'15label='Adventure'16path='/services'17/>18<CardItem19src='images/img-2.jpg'20text='Travel through the Islands of Bali in a Private Cruise'21label='Luxury'22path='/services'23/>24<CardItem25src='images/img-9.jpg'26text='Explore the hidden waterfall deep inside the Amazon Jungle'27label='Adventure'28path='/services'29/>30
31</ul>32<ul className='cards__items'>33<CardItem34src='images/img-3.jpg'35text='Set Sail in the Atlantic Ocean visiting Uncharted Waters'36label='Mystery'37path='/services'38/>39<CardItem40src='images/img-4.jpg'41text='Experience Football on Top of the Himilayan Mountains'42label='Adventure'43path='/products'44/>45<CardItem46src='images/img-8.jpg'47text='Ride through the Sahara Desert on a guided camel tour'48label='Adrenaline'49path='/sign-up'50/>51</ul>52</div>53</div>54</div>55);56}
57
58export default Cards;59