diff --git a/diagrams/programming/framework.py b/diagrams/programming/framework.py index aa28e451..fcc48fdd 100644 --- a/diagrams/programming/framework.py +++ b/diagrams/programming/framework.py @@ -76,7 +76,17 @@ class Vue(_Framework): _icon = "vue.png" +class Dotnet(_Framework): + _icon = "dotnet.png" + + +class Nextjs(_Framework): + _icon = "nextjs.png" + + # Aliases FastAPI = Fastapi GraphQL = Graphql +DotNet = Dotnet +NextJs = Nextjs diff --git a/docs/nodes/programming.md b/docs/nodes/programming.md index 08c83942..c4a69408 100644 --- a/docs/nodes/programming.md +++ b/docs/nodes/programming.md @@ -134,6 +134,12 @@ Node classes list of programming provider. Vue **diagrams.programming.framework.Vue** +Dotnet + **diagrams.programming.framework.Dotnet**, **DotNet** (alias) + +Nextjs + **diagrams.programming.framework.Nextjs**, **NextJs** (alias) + ## programming.language diff --git a/resources/programming/framework/dotnet.png b/resources/programming/framework/dotnet.png new file mode 100644 index 00000000..851e1b76 Binary files /dev/null and b/resources/programming/framework/dotnet.png differ diff --git a/resources/programming/framework/nextjs.png b/resources/programming/framework/nextjs.png new file mode 100644 index 00000000..3306955a Binary files /dev/null and b/resources/programming/framework/nextjs.png differ diff --git a/website/static/img/resources/programming/framework/dotnet.png b/website/static/img/resources/programming/framework/dotnet.png new file mode 100644 index 00000000..851e1b76 Binary files /dev/null and b/website/static/img/resources/programming/framework/dotnet.png differ diff --git a/website/static/img/resources/programming/framework/nextjs.png b/website/static/img/resources/programming/framework/nextjs.png new file mode 100644 index 00000000..3306955a Binary files /dev/null and b/website/static/img/resources/programming/framework/nextjs.png differ