Skip to content

Commit

Permalink
merge dev into main (#110)
Browse files Browse the repository at this point in the history
* adding react-spinners

* fix: fix LinksContainer typo

* fix: fixed desgin-inspiration typo

* fix: making links clickable for mobile and tablet view

* fix: logo overlapping sidebar in mobile and tablet view

* chore: fixing color contrast

* chore: added new links

* fix: color contrast

* chore: added new links

* chore: adding generators
  • Loading branch information
rupali-codes authored Jan 28, 2023
1 parent 327b7c3 commit b248180
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 4 deletions.
4 changes: 2 additions & 2 deletions components/LinksContainer/LinkContainer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ export const LinkContainer = ({ name, description, url }) => {
<div className="w-full md:w-72 h-64 bg-white shadow-xl border border-dashed border-violet-500 rounded-3xl dark:bg-gray-900 dark:text-gray-300">
<div className="card-body">
<h2 className="card-title text-violet-500 text-2xl">{name}</h2>
<p className="w-full text-clip-30 max-h-24 overflow-hidden">{description}</p>
<p className="w-full text-clip-30 h-24 overflow-hidden">{description}</p>
<div className="card-actions justify-end">
<a
href={url}
target="_blank"
rel="noreferrer"
className="mt-2 px-6 py-2 text-white text-center font-semibold bg-violet-600 rounded-2xl w-full hover:bg-transparent hover:text-violet-500 border border-dashed border-transparent hover:border-violet-400"
className="mt-2 px-6 py-2 text-white text-center font-semibold bg-violet-600 rounded-2xl w-full hover:bg-transparent hover:text-violet-500 border border-dashed border-transparent hover:border-violet-400 bottom-0"
>
Visit site
</a>
Expand Down
68 changes: 67 additions & 1 deletion database/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ export const data: IData[] = [
id: "25",
name: "Dribbble",
description:
"Explore the world’s leading design portfolios",
"Explore the world’s leading design portfolios.",
url: "https://dribbble.com",
category: "frontend",
subcategory: "design-inspiration",
Expand Down Expand Up @@ -271,6 +271,71 @@ export const data: IData[] = [
category: "frontend",
subcategory: "colors",
},
{
id: "31",
name: "Neumorphism.io",
description: "It's a platform where you can generate Soft-UI CSS elements for your webiste or app.",
url: "https://neumorphism.io/#e0e0e0",
category: "frontend",
subcategory: "ui-generators",
},
{
id: "32",
name: "Hype4 Academy",
description: "Another cool and excellent site to generate Glassmorphism CSS for your project.",
url: "https://hype4.academy/tools/glassmorphism-generator",
category: "frontend",
subcategory: "ui-generators",
},
{
id: "33",
name: "Universe.io",
description: "It provides tones of cool UI elements made with HTML & CSS.",
url: "https://uiverse.io/all",
category: "frontend",
subcategory: "ui-generators",
},
{
id: "34",
name: "CSS Portal",
description: "A bundle of amazing and UI CSS elements for you to use in your project.",
url: "https://www.cssportal.com/ui-generators.php",
category: "frontend",
subcategory: "ui-generators",
},
{
id: "35",
name: "EnjoyCSS",
description: "A platform to implement amazing CSS elements of your choice for your porject.",
url: "https://enjoycss.com/",
category: "frontend",
subcategory: "ui-generators",
},
{
id: "36",
name: "CSS Generator",
description: "A CSS generator that helps you demonstrate and quickly generate CSS declarations for your website.",
url: "https://cssgenerator.org/",
category: "frontend",
subcategory: "ui-generators",
},
{
id: "37",
name: "Code Magic",
description: "An amazing open source platform for generating ready to use CSS elements for your project. ",
url: "https://code-magic.vercel.app/",
category: "frontend",
subcategory: "ui-generators",
},
{
id: "38",
name: "daisyUI",
description: "A platform where you can generate UI components based on TailwindCSS. ",
url: "",
category: "frontend",
subcategory: "ui-generators",
},

];

export const sidebarData: ISidebar[] = [
Expand All @@ -286,6 +351,7 @@ export const sidebarData: ISidebar[] = [
{ name: 'design inspiration', url: '/design-inspiration' },
{ name: 'testing', url: '/testing' },
{ name: 'themes & templates', url: '/themes-templates' },
{ name: 'UI Generator', url: '/ui-generator' },
],
},
{
Expand Down
2 changes: 1 addition & 1 deletion types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export interface IData {

export type Category = "frontend" | "backend";

export type SubCategory = "images" | "icons" | "illustrations" | "colors" | "fonts" | "animations" | "testing" | "themes-templates" | "design-inspiration" | "validation" | "security" | "authentication" | "caching" ;
export type SubCategory = "images" | "icons" | "illustrations" | "colors" | "fonts" | "animations" | "testing" | "themes-templates" | "design-inspiration" | "validation" | "security" | "authentication" | "caching" | "ui-generators" ;
export type SubCategories = {
name: string;
url: string;
Expand Down

1 comment on commit b248180

@vercel
Copy link

@vercel vercel bot commented on b248180 Jan 28, 2023

Choose a reason for hiding this comment

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

Successfully deployed to the following URLs:

linkshub – ./

linkshub-rupali-codes.vercel.app
linkshub.vercel.app
linkshub-git-main-rupali-codes.vercel.app

Please sign in to comment.