2024-09-24 14:10:56 +01:00
|
|
|
export const projectTemplates: {
|
|
|
|
id: string
|
|
|
|
name: string
|
|
|
|
icon: string
|
|
|
|
description: string
|
|
|
|
disabled: boolean
|
|
|
|
}[] = [
|
|
|
|
{
|
|
|
|
id: "reactjs",
|
|
|
|
name: "React",
|
|
|
|
icon: "/project-icons/react.svg",
|
|
|
|
description: "A JavaScript library for building user interfaces",
|
|
|
|
disabled: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "vanillajs",
|
|
|
|
name: "HTML/JS",
|
|
|
|
icon: "/project-icons/more.svg",
|
2024-11-11 13:05:51 -05:00
|
|
|
description: "A simple HTML/JS project for building web apps",
|
2024-09-24 14:10:56 +01:00
|
|
|
disabled: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "nextjs",
|
|
|
|
name: "NextJS",
|
2024-10-13 23:48:36 +01:00
|
|
|
icon: "/project-icons/next-js.svg",
|
|
|
|
description: "a React framework for building full-stack web applications",
|
2024-09-24 14:10:56 +01:00
|
|
|
disabled: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: "streamlit",
|
|
|
|
name: "Streamlit",
|
|
|
|
icon: "/project-icons/python.svg",
|
2024-10-13 23:48:36 +01:00
|
|
|
description: "A faster way to build and share data apps",
|
2024-09-24 14:10:56 +01:00
|
|
|
disabled: false,
|
|
|
|
},
|
2024-11-24 22:28:32 -05:00
|
|
|
{
|
|
|
|
id: "php",
|
|
|
|
name: "PHP",
|
|
|
|
description: "PHP development environment",
|
|
|
|
icon: "/project-icons/php.svg",
|
|
|
|
disabled: false
|
|
|
|
},
|
2024-09-24 14:10:56 +01:00
|
|
|
]
|