diff --git a/src/Homepage/Homepage/Homepage.css b/src/Homepage/Homepage/Homepage.css index 218e6771f..e1ef0cdff 100644 --- a/src/Homepage/Homepage/Homepage.css +++ b/src/Homepage/Homepage/Homepage.css @@ -478,20 +478,15 @@ input.search-input:hover { display: flex; justify-content: center; align-items: center; - padding: 1rem 1rem; margin-bottom: 3rem; - background: #cfcfcf; - color: #000; - border-radius: 20px; - text-decoration: none; - font-weight: 400; + border-radius: 50px; + margin-top: -1rem; font-family: "Press Start 2P", cursive; box-shadow: 2px 2px 10px rgb(149, 149, 149); transition: background-color 0.3s ease; } .container_card .card .content a:hover { - background-color: gold; box-shadow: 2px 2px 10px gold; color: #000; } diff --git a/src/Homepage/Homepage/Homepage.js b/src/Homepage/Homepage/Homepage.js index 3320b86c5..37ed0cbe5 100644 --- a/src/Homepage/Homepage/Homepage.js +++ b/src/Homepage/Homepage/Homepage.js @@ -9,6 +9,7 @@ import { useState } from "react"; import DarkMode from "./DarkModeToggle"; import Instagram from "./instagram.png" import Github from "./github.png" +import Play from "./Play"; function Homepage() { @@ -31,9 +32,9 @@ function Homepage() { - + {/* Pacman Landing Container */} - +
@@ -43,12 +44,12 @@ function Homepage() {
-
-
-
-
-
-
+
+
+
+
+
+

About

Games-And-Go is a website that offers a diverse collection of online games to entertain and engage users of all ages. With a user-friendly interface, the website provides easy access to a wide range of games, including puzzles, arcade classics, strategy games, and more. Users can explore different game categories, choose their favorites, and start playing instantly without the need for downloads or installations. The website aims to provide a fun and immersive gaming experience, allowing players to relax, challenge themselves, and enjoy their leisure time. Whether you're a casual gamer or a dedicated gaming enthusiast, Games-And-Go has something to offer for everyone.

@@ -66,44 +67,44 @@ function Homepage() { placeholder="🔍 Search for your favourite game..." />
- +
{filteredData.map((row) => (
-
- {/* Addition of Flip card feature */} -
-
-
-
-

{row.serial_number}

-

{row.main_heading}

- +
+ {/* Addition of Flip card feature */} +
+
+
+
+

{row.serial_number}

+

{row.main_heading}

+ +
+ +
+
+
{row.rule_heading}
+
{row.step1}
+
{row.step2}
+
{row.step3}
- -
-
-
{row.rule_heading}
-
{row.step1}
-
{row.step2}
-
{row.step3}
+ {/* Flip card feature ends here. */} +

{row.about}

+ {/* Create a route for your game and add it in AllRoutes.js in Routes folder then add the link in data1 in Data Folder */} +
- {/* Flip card feature ends here. */} -

{row.about}

- {/* Create a route for your game and add it in AllRoutes.js in Routes folder then add the link in data1 in Data Folder */} - Play now !!!
-
))}
- +
- - + +

©Copyright IEEE-SSIT {new Date().getFullYear()}

diff --git a/src/Homepage/Homepage/Play.js b/src/Homepage/Homepage/Play.js new file mode 100644 index 000000000..6b2b4b933 --- /dev/null +++ b/src/Homepage/Homepage/Play.js @@ -0,0 +1,25 @@ +import React from "react"; + +const TrianglePlayLogo = () => { + return ( + + + + + ); +}; + +export default TrianglePlayLogo;