Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge dev into main #110

Merged
merged 14 commits into from
Jan 28, 2023
Merged
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