feat(templates): add odoo template

This commit is contained in:
Mauricio Siu
2024-06-29 23:38:47 -06:00
parent 898880634a
commit ed0f3cadd6
4 changed files with 78 additions and 0 deletions

View File

@@ -152,4 +152,19 @@ export const templates: TemplateData[] = [
tags: ["cms"],
load: () => import("./wordpress/index").then((m) => m.generate),
},
{
id: "odoo",
name: "Odoo",
version: "16.0",
description:
"Odoo is a free and open source business management software that helps you manage your company's operations.",
logo: "odoo.png",
links: {
github: "https://github.com/odoo/odoo",
website: "https://odoo.com/",
docs: "https://www.odoo.com/documentation/",
},
tags: ["cms"],
load: () => import("./odoo/index").then((m) => m.generate),
},
];