From d59c09611a408014a7ea0a4e709be01021bbc1ff Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Sat, 1 Jun 2024 12:08:48 +0200 Subject: [PATCH] Added a supporters page --- .../Components/Layout/MainLayout.razor | 3 ++ .../Components/Pages/Supporters.razor | 50 +++++++++++++++++++ .../Components/Pages/Supporters.razor.cs | 7 +++ 3 files changed, 60 insertions(+) create mode 100644 app/MindWork AI Studio/Components/Pages/Supporters.razor create mode 100644 app/MindWork AI Studio/Components/Pages/Supporters.razor.cs diff --git a/app/MindWork AI Studio/Components/Layout/MainLayout.razor b/app/MindWork AI Studio/Components/Layout/MainLayout.razor index ff7c92d..5e042ad 100644 --- a/app/MindWork AI Studio/Components/Layout/MainLayout.razor +++ b/app/MindWork AI Studio/Components/Layout/MainLayout.razor @@ -11,6 +11,9 @@ Chats + + Supporters + About diff --git a/app/MindWork AI Studio/Components/Pages/Supporters.razor b/app/MindWork AI Studio/Components/Pages/Supporters.razor new file mode 100644 index 0000000..f3cef07 --- /dev/null +++ b/app/MindWork AI Studio/Components/Pages/Supporters.razor @@ -0,0 +1,50 @@ +@page "/Supporters" + +Supporters + +
+
+ +
+ Our Titans + + In this section, we highlight the titan supporters of MindWork AI Studio. Titans are prestigious companies that provide significant support to our mission. + + + For companies, sponsoring MindWork AI Studio is not only a way to support innovation but also a valuable opportunity for public relations and marketing. Your company's name and logo will be featured prominently, showcasing your commitment to using cutting-edge AI tools and enhancing your reputation as an innovative enterprise. + + + Become our first Titan + +
+ + + + + + + Individual Contributors + + + + Become a contributor + + + + + + + + + Business Contributors + + + + Become a contributor + + + + + +
+
\ No newline at end of file diff --git a/app/MindWork AI Studio/Components/Pages/Supporters.razor.cs b/app/MindWork AI Studio/Components/Pages/Supporters.razor.cs new file mode 100644 index 0000000..90c0fad --- /dev/null +++ b/app/MindWork AI Studio/Components/Pages/Supporters.razor.cs @@ -0,0 +1,7 @@ +using Microsoft.AspNetCore.Components; + +namespace AIStudio.Components.Pages; + +public partial class Supporters : ComponentBase +{ +} \ No newline at end of file