Skip to content

Commit

Permalink
Merge pull request #12 from nikiljos/main
Browse files Browse the repository at this point in the history
Tried to move data to seperate file
  • Loading branch information
akash-santhosh committed Oct 3, 2021
2 parents 590d754 + 1fac8fa commit 45083d5
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 45 deletions.
36 changes: 36 additions & 0 deletions data.js
@@ -0,0 +1,36 @@
export const data=[
{
"siteName":"Hoppscotch",
"siteURL":"https://hoppscotch.io",
"siteDesc":"An Open source API development ecosystem"
},
{
"siteName":"Sentry",
"siteURL":"https://sentry.io",
"siteDesc":"Application monitoring and error tracking software"
},
{
"siteName":"Figma",
"siteURL":"https://www.figma.com/",
"siteDesc":"Web-based Vector Graphics editor & Prototyping tool"
},
{
"siteName":"FigJam",
"siteURL":"https://www.figma.com/figjam/",
"siteDesc":"Whiteboard collaboration tool to brainstorm and organize ideas"
},
{
"siteName":"Coolors",
"siteURL":"https://coolors.co",
"siteDesc":"Color Palettes Generator for Designers and Artists"
},
{
"siteName":"Color Hunt",
"siteURL":"https://colorhunt.co/",
"siteDesc":"Color Palettes Generator for Designers and Artists"
},{
"siteName":"Creately",
"siteURL":"https://creately.com/",
"siteDesc":"Collaboration tool with diagramming & design capabilities"
},
]
58 changes: 13 additions & 45 deletions pages/index.js
@@ -1,4 +1,5 @@
import Head from 'next/head'
import {data} from '../data'

export default function Home() {
return (
Expand All @@ -17,53 +18,20 @@ export default function Home() {
Here you can find some awesome tools related to Design & Development
</p>


<div className="grid">
<a href="https://hoppscotch.io" className="card">
<h3>Hoppscotch &rarr;</h3>
<p>An Open source API development ecosystem</p>
</a>

<a
href="https://sentry.io" className="card">
<h3>Sentry &rarr;</h3>
<p>Application monitoring and error tracking software</p>
</a>

<a
href="https://www.figma.com/" className="card">
<h3>Figma &rarr;</h3>
<p>Web-based Vector Graphics editor & Prototyping tool</p>
</a>

<a
href="https://www.figma.com/figjam/" className="card">
<h3>FigJam &rarr;</h3>
<p>Whiteboard collaboration tool to brainstorm and organize ideas</p>
</a>

<a
href="https://coolors.co" className="card">
<h3>Coolors &rarr;</h3>
<p>Color Palettes Generator for Designers and Artists</p>
</a>

<a
href="https://colorhunt.co/" className="card">
<h3>Color Hunt &rarr;</h3>
<p>Another Color Palettes For Designers</p>
</a>

<a
href="https://creately.com/" className="card">
<h3>Creately &rarr;</h3>
<p>Collaboration tool with diagramming & design capabilities</p>
</a>

<a
href="https://buefy.org/" className="card">
<h3>Buefy &rarr;</h3>
<p>Lightweight UI components for Vue.js based on Bulma</p>
</a>

{data.map(item => (
<a href={item.siteURL} className="card">
<h3>{item.siteName} &rarr;</h3>
<p>{item.siteDesc}</p>

</a>
))}




</div>
</main>
Expand Down

1 comment on commit 45083d5

@vercel
Copy link

@vercel vercel bot commented on 45083d5 Oct 3, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.