1+ import React from 'react'
2+ import CardItem from '../../components/Home/CardItem'
3+ // import "../../styles/pages/Home/Cards.css"
4+ import Wordle from "../../assets/games/Wordle/wordlejpg.png"
5+ import flagGame from "../../assets/games/flag guess/flagger.png"
6+ import magicSquare from "../../assets/numberblocks.png"
7+
8+ const Cards = ( ) => {
9+ return (
10+
11+ < div className = 'container' >
12+ < div className = 'row justify-content-center' >
13+
14+ < CardItem
15+ src = { Wordle }
16+ text = "Wordle Game"
17+ label = "Puzzle"
18+ path = '/games/Wordle'
19+ title = 'Wordle' />
20+ < CardItem
21+ src = { "https://img.freepik.com/free-vector/detailed-click-collect-sign_52683-53160.jpg?size=626&ext=jpg" }
22+ text = "Jitter Click Game"
23+ label = "Puzzle"
24+ path = '/games/jitter-game'
25+ title = 'Jitter' />
26+ < CardItem
27+ src = { magicSquare }
28+ text = "The Magic Squares Game"
29+ label = "Puzzle"
30+ path = '/games/magicsquares'
31+ title = 'MagicSquare' />
32+ < CardItem
33+ src = { "https://cdn-icons-png.flaticon.com/512/2076/2076261.png" }
34+ text = "TicTacToe with a twist"
35+ label = "Puzzle"
36+ path = '/games/tic-tac-toe'
37+ title = 'tic-tac-toe' />
38+ < CardItem
39+ src = { flagGame }
40+ text = "Learn Geography Fun Way"
41+ label = "Guess The Flag"
42+ path = '/games/GuessTheFlag'
43+ title = 'Guess The Flag' />
44+ < CardItem
45+ src = { "https://cdn-icons-png.flaticon.com/512/2541/2541991.png" }
46+ text = "Get random quotes"
47+ label = "Random Quotes"
48+ path = '/activities/random-quotes'
49+ title = 'Random Quotes' />
50+ < CardItem
51+ src = { "https://aws.astrotalk.com/assets/images/wheel_of_fortune.webp" }
52+ text = "Know your fortune"
53+ label = "Fortune Cards"
54+ path = '/activities/get-your-fortune'
55+ title = 'Fortune Cards' />
56+ < CardItem
57+ src = { "https://img.freepik.com/free-photo/marketing-research-concept-with-magnifying-glass-wooden-cubes-red-table-flat-lay_176474-9480.jpg?w=826&t=st=1698234200~exp=1698234800~hmac=06d4ff5d91bc832f3c7a656d2b3a1a792a66a1eab8161ae9086e29a67599154f" }
58+ text = "Get any Definition"
59+ label = "Search Words"
60+ path = '/activities/search-any-word'
61+ title = 'Search Words' />
62+
63+ </ div >
64+ </ div >
65+ )
66+ }
67+
68+ export default Cards
0 commit comments