@@ -9,117 +9,116 @@ import { Jitter } from "../pages/games/Jitter";
99import { RandomMeme } from "../pages/activities/RandomMemes" ;
1010import { RandomJoke } from "../pages/activities/RandomJoke" ;
1111import { RandomAnimeQuote } from "../pages/activities/RandomAnimeQuote" ;
12- import meme from "../assets/activities/meme.jpg"
13- import dog from "../assets/activities/dogimage.jpeg"
14- import cat from "../assets/activities/cat.jpg"
15- import numberblocs from "../assets/numberblocks.png"
16- import wordleicon from "../assets/games/Wordle/wordlejpg.png"
17- import flagger from "../assets/games/flag guess/flagger.png"
18- import Calculator from "../pages/activities/Calculator"
12+ import meme from "../assets/activities/meme.jpg" ;
13+ import dog from "../assets/activities/dogimage.jpeg" ;
14+ import cat from "../assets/activities/cat.jpg" ;
15+ import numberblocs from "../assets/numberblocks.png" ;
16+ import wordleicon from "../assets/games/Wordle/wordlejpg.png" ;
17+ import flagger from "../assets/games/flag guess/flagger.png" ;
18+ import Calculator from "../pages/activities/Calculator" ;
1919import { DogHttpCode } from "../pages/activities/DogHttpCode" ;
2020import { CatHttpCode } from "../pages/activities/CatHttpCode" ;
2121
2222export const activities = [
23- {
24- title : "Random quotes" ,
25- description : "Get random quotes" ,
26- icon : "https://cdn-icons-png.flaticon.com/512/2541/2541991.png" ,
27- urlTerm : "random-quotes" ,
28- element : < RandomQuote />
29- } ,
30- {
31- title : "Random Anime Quotes" ,
32- description : "Get random anime quotes" ,
33- icon : "https://64.media.tumblr.com/7b526ba246f48e294ebc87fe2cbd8e1b/1a4bdb8275a18adc-c7/s250x400/94d6c7e70601111ba79b8801cd939694d0000018.jpg" , // Add the path to the anime icon image
34- urlTerm : "random-anime-quotes" ,
35- element : < RandomAnimeQuote /> , // Assuming you have a RandomQuote component for anime quotes
36- } ,
37- {
38- title : "Random memes" ,
39- description : "Get random meme" ,
40- icon : meme ,
41- urlTerm : "random-memes" ,
42- element : < RandomMeme />
43- } ,
44- {
45- title : "Fortune Card" ,
46- description : "Get your fortune" ,
47- icon : "https://aws.astrotalk.com/assets/images/wheel_of_fortune.webp" ,
48- urlTerm : "get-your-fortune" ,
49- element : < FortuneCard />
50- } ,
51- {
52- title : "Search Words" ,
53- description : "Get any definition" ,
54- icon : "https://www.i2symbol.com/pictures/emojis/f/2/0/4/f2042fedcbc0cdaee2967c4449b62845.png" ,
55- urlTerm : "search-any-word" ,
56- element : < SearchWord />
57- } ,
58- {
59- title : "Random Jokes" ,
60- description : "Get random jokes" ,
61- icon : "https://www.troublefreepool.com/media/joke-png.127455/full" ,
62- urlTerm : "random-jokes" ,
63- element : < RandomJoke />
64- } ,
65- {
66- title : "Calculator" ,
67- description : "A Simple Calculator" ,
68- icon : "https://cdn2.iconfinder.com/data/icons/ios7-inspired-mac-icon-set/512/Calculator_512.png" ,
69- urlTerm : "calculator" ,
70- element : < Calculator />
71- } ,
72- {
73- title : "Dog Http Status Code" ,
74- description : "Get random dog images or meme" ,
75- icon : dog ,
76- urlTerm : "dog-http-status" ,
77- element : < DogHttpCode />
78- } ,
79- {
80- title : "Cat Http Status Code" ,
81- description : "Get random cat images or meme" ,
82- icon : cat ,
83- urlTerm : "cat-http-status" ,
84- element : < CatHttpCode />
85- } ,
23+ {
24+ title : "Random quotes" ,
25+ description : "Get random quotes" ,
26+ icon : "https://cdn-icons-png.flaticon.com/512/2541/2541991.png" ,
27+ urlTerm : "random-quotes" ,
28+ element : < RandomQuote /> ,
29+ } ,
30+ {
31+ title : "Random Anime Quotes" ,
32+ description : "Get random anime quotes" ,
33+ icon : "https://64.media.tumblr.com/7b526ba246f48e294ebc87fe2cbd8e1b/1a4bdb8275a18adc-c7/s250x400/94d6c7e70601111ba79b8801cd939694d0000018.jpg" ,
34+ urlTerm : "random-anime-quotes" ,
35+ element : < RandomAnimeQuote /> ,
36+ } ,
37+ {
38+ title : "Random memes" ,
39+ description : "Get random meme" ,
40+ icon : meme ,
41+ urlTerm : "random-memes" ,
42+ element : < RandomMeme /> ,
43+ } ,
44+ {
45+ title : "Fortune Card" ,
46+ description : "Get your fortune" ,
47+ icon : "https://aws.astrotalk.com/assets/images/wheel_of_fortune.webp" ,
48+ urlTerm : "get-your-fortune" ,
49+ element : < FortuneCard /> ,
50+ } ,
51+ {
52+ title : "Search Words" ,
53+ description : "Get any definition" ,
54+ icon : "https://www.i2symbol.com/pictures/emojis/f/2/0/4/f2042fedcbc0cdaee2967c4449b62845.png" ,
55+ urlTerm : "search-any-word" ,
56+ element : < SearchWord /> ,
57+ } ,
58+ {
59+ title : "Random Jokes" ,
60+ description : "Get random jokes" ,
61+ icon : "https://www.troublefreepool.com/media/joke-png.127455/full" ,
62+ urlTerm : "random-jokes" ,
63+ element : < RandomJoke /> ,
64+ } ,
65+ {
66+ title : "Calculator" ,
67+ description : "A Simple Calculator" ,
68+ icon : "https://cdn2.iconfinder.com/data/icons/ios7-inspired-mac-icon-set/512/Calculator_512.png" ,
69+ urlTerm : "calculator" ,
70+ element : < Calculator /> ,
71+ } ,
72+ {
73+ title : "Dog Http Status Code" ,
74+ description : "Get random dog images or meme" ,
75+ icon : dog ,
76+ urlTerm : "dog-http-status" ,
77+ element : < DogHttpCode /> ,
78+ } ,
79+ {
80+ title : "Cat Http Status Code" ,
81+ description : "Get random cat images or meme" ,
82+ icon : cat ,
83+ urlTerm : "cat-http-status" ,
84+ element : < CatHttpCode /> ,
85+ } ,
8686] ;
8787
8888export const games = [
89- {
90- urlTerm : "magicsquares" ,
91- title : "Magic Squares" ,
92- description : "Magic Squares > contribution by y-ashaswini :)" ,
93- icon : numberblocs ,
94- element : < MagicSquares /> ,
95- } ,
96- {
97- title : "Tic-Tac-Toe" ,
98- description : "Lets beat opponent's ass in TicTacToe" ,
99- icon : "https://cdn-icons-png.flaticon.com/512/2076/2076261.png" ,
100- urlTerm : "tic-tac-toe" ,
101- element : < TicTacToe /> ,
102- } ,
103- {
104- title : "Jitter Click Game" ,
105- description : "Click as fast as possible to reach 5 stars.... lakshya" ,
106- icon : "https://i.kym-cdn.com/entries/icons/original/000/036/070/cover5.jpg" ,
107- urlTerm : "jitter-game" ,
108- element : < Jitter /> ,
109- } ,
110- {
111- title : "Wordle Game" ,
112- description : "The normal wordle but you can play as much as you want" ,
113- icon : wordleicon ,
114- urlTerm : "Wordle" ,
115- element : < Wordle />
116- } ,
117- {
118- title : "Guess The Flag" ,
119- description : "Learn geography in fun way" ,
120- icon : flagger ,
121- urlTerm : "GuessTheFlag" ,
122- element : < GuessTheFlag />
123- }
89+ {
90+ urlTerm : "magicsquares" ,
91+ title : "Magic Squares" ,
92+ description : "Magic Squares > contribution by y-ashaswini :)" ,
93+ icon : numberblocs ,
94+ element : < MagicSquares /> ,
95+ } ,
96+ {
97+ title : "Tic-Tac-Toe" ,
98+ description : "Lets beat opponent in TicTacToe" ,
99+ icon : "https://cdn-icons-png.flaticon.com/512/2076/2076261.png" ,
100+ urlTerm : "tic-tac-toe" ,
101+ element : < TicTacToe /> ,
102+ } ,
103+ {
104+ title : "Jitter Click Game" ,
105+ description : "Click as fast as possible to reach 5 stars.... lakshya" ,
106+ icon : "https://i.kym-cdn.com/entries/icons/original/000/036/070/cover5.jpg" ,
107+ urlTerm : "jitter-game" ,
108+ element : < Jitter /> ,
109+ } ,
110+ {
111+ title : "Wordle Game" ,
112+ description : "The normal wordle but you can play as much as you want" ,
113+ icon : wordleicon ,
114+ urlTerm : "Wordle" ,
115+ element : < Wordle /> ,
116+ } ,
117+ {
118+ title : "Guess The Flag" ,
119+ description : "Learn geography in fun way" ,
120+ icon : flagger ,
121+ urlTerm : "GuessTheFlag" ,
122+ element : < GuessTheFlag /> ,
123+ } ,
124124] ;
125-
0 commit comments