-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #712 from Ojas-Arora/portal
Improve features on search results
- Loading branch information
Showing
3 changed files
with
88 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,31 @@ | ||
import React, { useState } from 'react'; | ||
import { Link } from 'react-router-dom'; | ||
import Card1 from "../img/card1.jpg"; | ||
import Card2 from "../img/card2.jpg"; | ||
import Card3 from "../img/card3.jpg"; | ||
import Card4 from "../img/card4.jpg"; | ||
import Card5 from "../img/card5.jpg"; | ||
import Card6 from "../img/card6.jpg"; | ||
import Card7 from "./projects/card7.png"; | ||
import Card8 from "./projects/card8.png"; | ||
import Card9 from "./projects/card9.png"; | ||
import Card10 from "./projects/card10.png"; | ||
import Card11 from "./projects/card11.png"; | ||
import Card12 from "./projects/card12.png"; | ||
|
||
const search = [ | ||
{id: 1, title: "StockIT", category: "Project" }, | ||
{id: 2, title: "TakeNote", category: "Project" }, | ||
{id: 3, title: "TaRct", category: "Project" }, | ||
{id: 4, title: "To Do", category: "Project" }, | ||
{id: 5, title: "ArchiTect", category: "Project" }, | ||
{id: 6, title: "WeatherLy", category: "Project" }, | ||
{id: 7, title: "Typing Test", category:"@JaneCooper" }, | ||
{id: 8, title: "Artisan", category: "@ArieneMcCoy" }, | ||
{id: 9, title: "BBlocks", category: "@TheresaWebb" }, | ||
{id: 10,title: "ZzShoes", category: "@RalphEdwards" }, | ||
{id: 11,title: "SearchEngine", category: "@Raplhie" }, | ||
{id: 12, title: "Alimage" , category: "Project"} | ||
|
||
{id: 1, title: "StockIT", category: "Project", image: Card1 }, | ||
{id: 2, title: "TakeNote", category: "Project", image: Card2 }, | ||
{id: 3, title: "TaRct", category: "Project", image: Card3 }, | ||
{id: 4, title: "To Do", category: "Project", image: Card4 }, | ||
{id: 5, title: "ArchiTect", category: "Project", image: Card5 }, | ||
{id: 6, title: "WeatherLy", category: "Project", image: Card6 }, | ||
{id: 7, title: "Typing Test", category:"@JaneCooper", image: Card7 }, | ||
{id: 8, title: "Artisan", category: "@ArieneMcCoy", image: Card8 }, | ||
{id: 9, title: "BBlocks", category: "@TheresaWebb", image: Card9 }, | ||
{id: 10,title: "ZzShoes", category: "@RalphEdwards", image: Card10 }, | ||
{id: 11,title: "SearchEngine", category: "@Raplhie", image: Card11 }, | ||
{id: 12, title: "Alimage" , category: "Project", image: Card12 } | ||
]; | ||
export default search | ||
|
||
export default search; |