Skip to content

Commit

Permalink
Add Web Projects
Browse files Browse the repository at this point in the history
  • Loading branch information
Akash Singh committed Mar 3, 2024
1 parent ababb6f commit 9d03758
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 28 deletions.
11 changes: 11 additions & 0 deletions documentation/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions documentation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"copy-text-to-clipboard": "^3.1.0",
"docusaurus-plugin-copy": "^0.1.1",
"dotenv": "^16.0.2",
"fireworks-js": "^2.10.7",
"framer-motion": "^6.5.1",
"hast-util-is-element": "^1.1.0",
"postcss": "^8.4.16",
Expand Down
1 change: 0 additions & 1 deletion documentation/src/pages/about/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import { useColorMode } from "@docusaurus/theme-common";
import { CommonThemedImage } from "@site/src/prepverse-theme/common-themed-image";
import { EnterpriseHeroSection } from "@site/src/prepverse-theme/enterprise-hero-section";
import { EnterpriseFaq } from "@site/src/prepverse-theme/enterprise-faq";
import { EnterpriseGetInTouchCta } from "@site/src/prepverse-theme/enterprise-get-in-touch-cta";
import ProjectList from "@site/src/components/project-list";

const About: React.FC = () => {
Expand Down
54 changes: 27 additions & 27 deletions documentation/src/pages/showcase/_components/users.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ export type TagType =
| 'react'
| 'node'
| 'php'
| 'python'
| 'ml'
| 'ds'
// | 'python'
// | 'ml'
// | 'ds'

const Users: User[] = [
{
Expand Down Expand Up @@ -961,32 +961,32 @@ export const Tags: {[type in TagType]: Tag} = {
color: '#1e90fe',
},

python: {
label: translate({message: 'Python'}),
description: translate({
message: 'PrepVerse projects using the python feature',
id: 'showcase.tag.python.description',
}),
color: '#ffff00',
},
// python: {
// label: translate({message: 'Python'}),
// description: translate({
// message: 'PrepVerse projects using the python feature',
// id: 'showcase.tag.python.description',
// }),
// color: '#ffff00',
// },

ml: {
label: translate({message: 'Machine Learning'}),
description: translate({
message: 'PrepVerse projects using the ml feature',
id: 'showcase.tag.ml.description',
}),
color: '#c71585',
},
// ml: {
// label: translate({message: 'Machine Learning'}),
// description: translate({
// message: 'PrepVerse projects using the ml feature',
// id: 'showcase.tag.ml.description',
// }),
// color: '#c71585',
// },

ds: {
label: translate({message: 'Data Science'}),
description: translate({
message: 'PrepVerse projects using the ds feature',
id: 'showcase.tag.ds.description',
}),
color: '#3cb371',
},
// ds: {
// label: translate({message: 'Data Science'}),
// description: translate({
// message: 'PrepVerse projects using the ds feature',
// id: 'showcase.tag.ds.description',
// }),
// color: '#3cb371',
// },
};

export const TagList = Object.keys(Tags) as TagType[];
Expand Down

0 comments on commit 9d03758

Please sign in to comment.