@powerhousedao/academy 0.1.0-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.vscode/settings.json +3 -0
- package/CHANGELOG.md +9 -0
- package/Dockerfile +31 -0
- package/ProcFile +1 -0
- package/README.md +43 -0
- package/babel.config.js +3 -0
- package/blog/BeyondCommunication-ABlueprintForDevelopment.md +88 -0
- package/blog/TheChallengeOfChange.md +86 -0
- package/blog/images/Iteration.png +0 -0
- package/blog/images/RAD.png +0 -0
- package/docs/academy/01-GetStarted/00-GetStarted.mdx +181 -0
- package/docs/academy/01-GetStarted/01_InstallDemoPackage.md +38 -0
- package/docs/academy/01-GetStarted/02-ToDoList/01-CreateNewPowerhouseProject.md +97 -0
- package/docs/academy/01-GetStarted/02-ToDoList/02-DefineToDoListDocumentModel.md +86 -0
- package/docs/academy/01-GetStarted/02-ToDoList/03-ImplementOperationReducers.md +201 -0
- package/docs/academy/01-GetStarted/02-ToDoList/04-BuildToDoListEditor.md +494 -0
- package/docs/academy/01-GetStarted/02-ToDoList/_category_.json +8 -0
- package/docs/academy/01-GetStarted/02-ToDoList/images/DocumentModelHeader.png +0 -0
- package/docs/academy/01-GetStarted/02-ToDoList/images/DocumentModelOperations.png +0 -0
- package/docs/academy/01-GetStarted/02-ToDoList/images/OpenDocumentModelEditor.gif +0 -0
- package/docs/academy/01-GetStarted/02-ToDoList/images/completeEditor.png +0 -0
- package/docs/academy/01-GetStarted/02-ToDoList/images/connectApp.gif +0 -0
- package/docs/academy/01-GetStarted/02-ToDoList/images/form.png +0 -0
- package/docs/academy/01-GetStarted/02-ToDoList/images/mytodolist.gif +0 -0
- package/docs/academy/01-GetStarted/02-ToDoList/images/reducers.png +0 -0
- package/docs/academy/01-GetStarted/02-ToDoList/images/vscode.png +0 -0
- package/docs/academy/01-GetStarted/styles.module.css +99 -0
- package/docs/academy/02-AdvancedTutorial/01-Create/00-BuilderTools.md +234 -0
- package/docs/academy/02-AdvancedTutorial/01-Create/01-SetupBuilderEnvironment.md +247 -0
- package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/04-UtilitiesAndTips.md +79 -0
- package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/01-SetupBuilderEnvironment.md +216 -0
- package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/02-CreateNewPowerhouseProject.md +78 -0
- package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/03-DefineChatroomDocumentModel.md +139 -0
- package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/04-ImplementOperationReducers.md +364 -0
- package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/05-ImplementChatroomEditor.md +194 -0
- package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/06-LaunchALocalReactor.md +15 -0
- package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/_category_.json +8 -0
- package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/image-1.png +0 -0
- package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/image-2.png +0 -0
- package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/image-3.png +0 -0
- package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/image-4.png +0 -0
- package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/image-5.png +0 -0
- package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/image.png +0 -0
- package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/images/ChatRoomConnectApp.gif +0 -0
- package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/images/ChatRoomTest.gif +0 -0
- package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/images/completeEditor.png +0 -0
- package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/images/form.png +0 -0
- package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/images/reducers.png +0 -0
- package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/Chatroom/images/vscode.png +0 -0
- package/docs/academy/02-AdvancedTutorial/01-Create/02-MoreTutorials/_category_.json +8 -0
- package/docs/academy/02-AdvancedTutorial/01-Create/02-StandardDocumentModelWorkflow.md +229 -0
- package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/01-BuildingBeautifulDocumentEditors.md +109 -0
- package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/02-ConfiguringDrives.md +51 -0
- package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/03-BuildingADriveExplorer.md +174 -0
- package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/07-DocumentTools/01-OperationHistory.md +67 -0
- package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/07-DocumentTools/02-RevisionHistoryTimeline.md +132 -0
- package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/07-DocumentTools/_category_.json +7 -0
- package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/07-DocumentTools/images/committer-address-popup.png +0 -0
- package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/07-DocumentTools/images/revision-hash-popup.png +0 -0
- package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/07-DocumentTools/images/revision-history-list.png +0 -0
- package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/07-DocumentTools/images/signature-details-popup.png +0 -0
- package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/_category_.json +8 -0
- package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/images/CreateDrive.png +0 -0
- package/docs/academy/02-AdvancedTutorial/03-BuildingUserExperiences/images/mytodolist.gif +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/01-ReadingAndWritingThroughTheAPI.mdx +121 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/02-GraphQLAtPowerhouse.md +156 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/03-WorkingWithSubgraphs/02-GraphQLAndSubgraphs.mdx +119 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/03-WorkingWithSubgraphs/03-WorkingWithSubgraphs.md +312 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/03-WorkingWithSubgraphs/_category_.json +8 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/04-analytics-processor.md +342 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/01-SetupBuilderEnvironment.md +215 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/02-CreateNewPowerhouseProject.md +55 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/03-GenerateAnAnalyticsProcessor.md +173 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/04-UpdateAnalyticsProcessor.md +223 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/_category_.json +8 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/images/Create-SPV.gif +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/images/Create-a-new-asset.png +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/images/Create-a-transaction.gif +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/images/Transaction-table.png +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/images/create-a-new-RWA-document.gif +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/05-AnalyticsProcessorTutorial/images/granularity.png +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/GraphQL References/QueryingADocumentWithGraphQL.md +244 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/GraphQL References/rwa-reports/listener-raw.png +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/GraphQL References/rwa-reports/raw-reports1.png +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/GraphQL References/rwa-reports/raw-reports2.png +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/GraphQL References/rwa-reports/rwaRegister.png +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/apse.png +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/best-practices.md +60 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/filter.png +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/filteroptions.png +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/graphql/index.md +166 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/graphql/integration.md +75 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/dbs.png +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/high-level.jpg +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/indexeddb.png +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/libs-core.jpg +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/libs.jpg +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/lod.jpg +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/logo.png +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/navbar.png +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/overview-1.jpg +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/overview-2.jpg +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/overview-3.jpg +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/overview-4.jpg +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/overview-5.jpg +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/overview-6.jpg +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/paths-1.jpg +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/images/paths-2.jpg +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/intro.md +149 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/typescript/benchmarks.md +27 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/typescript/browser.md +77 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/typescript/compatibility.md +14 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/typescript/index.md +230 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/typescript/memory.md +72 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/typescript/pg.md +63 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/typescript/schema.md +14 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/typescript/utilities.md +102 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/use-cases/index.md +7 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/use-cases/maker.md +652 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/06-Analytics Engine/use-cases/processors.md +3 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/_category_.json +8 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/images/OperationHistory.png +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/images/OperationsQuery.png +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/images/QueryDocumentID.png +0 -0
- package/docs/academy/02-AdvancedTutorial/04-WorkWithData/images/SwitchboardButton.png +0 -0
- package/docs/academy/02-AdvancedTutorial/05-Launch/00-IntegrateInAFront-End +3 -0
- package/docs/academy/02-AdvancedTutorial/05-Launch/01-IntroducingFusion +18 -0
- package/docs/academy/02-AdvancedTutorial/05-Launch/02-IntroductionToPackages.md +79 -0
- package/docs/academy/02-AdvancedTutorial/05-Launch/02-PublishYourProject.md +230 -0
- package/docs/academy/02-AdvancedTutorial/05-Launch/03-RunOnACloudServer.md +279 -0
- package/docs/academy/02-AdvancedTutorial/05-Launch/03-SetupEnvironment.md +436 -0
- package/docs/academy/02-AdvancedTutorial/05-Launch/04-GraphQLNamespacing +44 -0
- package/docs/academy/02-AdvancedTutorial/05-Launch/05-LaunchYourBackend.md +3 -0
- package/docs/academy/02-AdvancedTutorial/05-Launch/06-LaunchYourFrontend.md +3 -0
- package/docs/academy/02-AdvancedTutorial/05-Launch/_category_.json +8 -0
- package/docs/academy/02-AdvancedTutorial/05-Launch/images/SSHConnection.png +0 -0
- package/docs/academy/02-AdvancedTutorial/05-Launch/images/homedesign.png +0 -0
- package/docs/academy/02-AdvancedTutorial/05-Launch/images/keyconcepts.png +0 -0
- package/docs/academy/02-AdvancedTutorial/05-Launch/images/tutorialschema.png +0 -0
- package/docs/academy/02-AdvancedTutorial/06-Authorization/Authorization.md +100 -0
- package/docs/academy/02-AdvancedTutorial/_category_.json +7 -0
- package/docs/academy/03-APIReferences/00-PowerhouseCLI.md +1 -0
- package/docs/academy/03-APIReferences/_category_.json +7 -0
- package/docs/academy/04-ComponentLibrary/01-PowerhouseDesignSystem.md +94 -0
- package/docs/academy/04-ComponentLibrary/02-BuildingWithScalars.md +54 -0
- package/docs/academy/04-ComponentLibrary/03-Scalar-Components/01-phid-field.mdx +72 -0
- package/docs/academy/04-ComponentLibrary/03-Scalar-Components/02-input-field.mdx +0 -0
- package/docs/academy/04-ComponentLibrary/04-Complex-Components/01-sidebar.mdx +36 -0
- package/docs/academy/04-ComponentLibrary/05-Layout-Components/01-test-toupdate.mdx +61 -0
- package/docs/academy/04-ComponentLibrary/06-Fragments/01-test-toupdate.mdx +61 -0
- package/docs/academy/04-ComponentLibrary/_category_.json +8 -0
- package/docs/academy/05-Architecture/00-PowerhouseArchitecture.md +50 -0
- package/docs/academy/05-Architecture/01-WorkingWithTheReactor.md +48 -0
- package/docs/academy/05-Architecture/02-ReferencingMonorepoPackages +65 -0
- package/docs/academy/05-Architecture/04-MovingBeyondCRUD +61 -0
- package/docs/academy/05-Architecture/05-DocumentModelTheory/01-WhatIsADocumentModel.md +188 -0
- package/docs/academy/05-Architecture/05-DocumentModelTheory/02-DAOandDocumentsModelsQ+A.md +177 -0
- package/docs/academy/05-Architecture/05-DocumentModelTheory/02-domain-modeling.md +103 -0
- package/docs/academy/05-Architecture/05-DocumentModelTheory/03-BenefitsOfDocumentModels.md +95 -0
- package/docs/academy/05-Architecture/05-DocumentModelTheory/05-best-practices.md +257 -0
- package/docs/academy/05-Architecture/05-DocumentModelTheory/_category_.json +8 -0
- package/docs/academy/05-Architecture/05-DocumentModelTheory/three-data-layers.png +0 -0
- package/docs/academy/05-Architecture/_category_.json +7 -0
- package/docs/academy/05-Architecture/images/image.png +0 -0
- package/docs/academy/06-Cookbook.md +905 -0
- package/docs/academy/07-Glossary.md +50 -0
- package/docs/bookofpowerhouse/01-Overview.md +29 -0
- package/docs/bookofpowerhouse/02-GeneralFrameworkAndPhilosophy.md +15 -0
- package/docs/bookofpowerhouse/03-PowerhouseSoftwareArchitecture.md +33 -0
- package/docs/bookofpowerhouse/04-DevelopmentApproaches.md +36 -0
- package/docs/bookofpowerhouse/05-SNOsandANewModelForOSSandPublicGoods.md +73 -0
- package/docs/bookofpowerhouse/06-SNOsInActionAndPlatformEconomies.md +17 -0
- package/docs/renown/01-intro.md +18 -0
- package/docs/renown/02-renown-login-flow.md +60 -0
- package/docusaurus +0 -0
- package/docusaurus.config.ts +170 -0
- package/package.json +50 -0
- package/powerhouse-docs@0.0.0 +0 -0
- package/sidebars.ts +33 -0
- package/src/components/HomepageFeatures/index.tsx +250 -0
- package/src/components/HomepageFeatures/styles.module.css +267 -0
- package/src/css/custom.css +450 -0
- package/src/pages/index.module.css +37 -0
- package/src/pages/index.tsx +42 -0
- package/src/pages/markdown-page.md +7 -0
- package/static/.nojekyll +0 -0
- package/static/fonts/FranieBold.otf +0 -0
- package/static/fonts/FranieRegular.otf +0 -0
- package/static/img/Powerhouse Website Drive.png +0 -0
- package/static/img/Powerhouse Website Storage Layer (1).png +0 -0
- package/static/img/Powerhouse Website Storage Layer.png +0 -0
- package/static/img/Powerhouse-main-light.svg +13 -0
- package/static/img/Powerhouse-main.svg +13 -0
- package/static/img/Renown Intro Diagram.png +0 -0
- package/static/img/Union.svg +3 -0
- package/static/img/academy/icons/Advanced.svg +4 -0
- package/static/img/academy/icons/Book.svg +5 -0
- package/static/img/academy/icons/Cookbook.svg +3 -0
- package/static/img/academy/icons/Create.svg +3 -0
- package/static/img/academy/icons/Data.svg +3 -0
- package/static/img/academy/icons/Editor.svg +3 -0
- package/static/img/academy/icons/Flash.svg +3 -0
- package/static/img/academy/icons/Launch.svg +3 -0
- package/static/img/academy-icon.png +0 -0
- package/static/img/connect-icon.png +0 -0
- package/static/img/connect.png +0 -0
- package/static/img/docusaurus-social-card.jpg +0 -0
- package/static/img/docusaurus.png +0 -0
- package/static/img/empty-background.png +0 -0
- package/static/img/favicon.ico +0 -0
- package/static/img/fusion-icon.png +0 -0
- package/static/img/fusion.png +0 -0
- package/static/img/ph-icon-light.svg +3 -0
- package/static/img/powerhouse-layer.png +0 -0
- package/static/img/powerhouse-storage-layer.png +0 -0
- package/static/img/reactor.png +0 -0
- package/static/img/renown-icon.png +0 -0
- package/static/img/renown.png +0 -0
- package/static/img/switchboard-icon.png +0 -0
- package/static/img/switchboard.png +0 -0
- package/static/img/undraw_docusaurus_mountain.svg +171 -0
- package/static/img/undraw_docusaurus_react.svg +170 -0
- package/static/img/undraw_docusaurus_tree.svg +40 -0
- package/static/img/video-placeholder.svg +16 -0
- package/static.json +7 -0
- package/tsconfig.json +7 -0
|
@@ -0,0 +1,450 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Any CSS included here will be global. The classic template
|
|
3
|
+
* bundles Infima by default. Infima is a CSS framework designed to
|
|
4
|
+
* work well for content-centric websites.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/* You can override the default Infima variables here. */
|
|
8
|
+
:root {
|
|
9
|
+
--ifm-color-primary: #1A1A1B;
|
|
10
|
+
--ifm-color-primary-dark: #1A1A1B;
|
|
11
|
+
--ifm-color-primary-darker: #1A1A1B;
|
|
12
|
+
--ifm-color-primary-darkest: #1A1A1B;
|
|
13
|
+
--ifm-color-primary-light: #1A1A1B;
|
|
14
|
+
--ifm-color-primary-lighter: #1A1A1B;
|
|
15
|
+
--ifm-color-primary-lightest: #1A1A1B;
|
|
16
|
+
--ifm-code-font-size: 95%;
|
|
17
|
+
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
/* For readability concerns, you should choose a lighter palette in dark mode. */
|
|
21
|
+
[data-theme='dark'] {
|
|
22
|
+
--ifm-color-primary: #ffffff;
|
|
23
|
+
--ifm-color-primary-dark: #ffffff;
|
|
24
|
+
--ifm-color-primary-darker: #ffffff;
|
|
25
|
+
--ifm-color-primary-darkest: #ffffff;
|
|
26
|
+
--ifm-color-primary-light: #ffffff;
|
|
27
|
+
--ifm-color-primary-lighter: #ffffff;
|
|
28
|
+
--ifm-color-primary-lightest: #ffffff;
|
|
29
|
+
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.3);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
@font-face {
|
|
33
|
+
font-family: 'Franie';
|
|
34
|
+
src: url('/fonts/FranieRegular.otf') format('woff2');
|
|
35
|
+
font-weight: normal;
|
|
36
|
+
font-style: normal;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
@font-face {
|
|
40
|
+
font-family: 'Franie';
|
|
41
|
+
src: url('/fonts/FranieBold.otf') format('woff2');
|
|
42
|
+
font-weight: bold;
|
|
43
|
+
font-style: normal;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.hero__title {
|
|
47
|
+
font-family: 'Franie', sans-serif;
|
|
48
|
+
font-weight: bold;
|
|
49
|
+
font-size: 39.75px;
|
|
50
|
+
margin-bottom: 0.1rem; /* Reduce bottom margin */
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.hero__subtitle {
|
|
54
|
+
font-family: 'Inter', sans-serif;
|
|
55
|
+
font-weight: normal;
|
|
56
|
+
margin-top: 0.1rem; /* Reduce top margin */
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/* Ensure white text in both light and dark modes */
|
|
60
|
+
.hero__title,
|
|
61
|
+
.hero__subtitle {
|
|
62
|
+
color: #ffffff;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
/* If you need different colors for light mode, use this */
|
|
66
|
+
html[data-theme='light'] .hero__title,
|
|
67
|
+
html[data-theme='light'] .hero__subtitle {
|
|
68
|
+
color: #ffffff; /* or any other color for light mode */
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
/* Explicitly set white color for dark mode */
|
|
72
|
+
html[data-theme='dark'] .hero__title,
|
|
73
|
+
html[data-theme='dark'] .hero__subtitle {
|
|
74
|
+
color: #ffffff;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
/* Dark mode styles */
|
|
78
|
+
html[data-theme='dark'] {
|
|
79
|
+
--ifm-background-color: #1A1A1B;
|
|
80
|
+
--ifm-background-surface-color: #1A1A1B;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
/* If you want to affect specific elements, you can add more specific rules */
|
|
84
|
+
html[data-theme='dark'] .main-wrapper {
|
|
85
|
+
background-color: #1A1A1B;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
html[data-theme='dark'] .navbar {
|
|
89
|
+
background-color: #1A1A1B;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
html[data-theme='dark'] .footer {
|
|
93
|
+
background-color: #1A1A1B;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
html[data-theme='light'] .footer {
|
|
97
|
+
background-color: #f5f5f5;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
/* Light theme styles for footer */
|
|
101
|
+
html[data-theme='light'] .footer {
|
|
102
|
+
--ifm-footer-color: #000000;
|
|
103
|
+
--ifm-footer-link-color: #000000;
|
|
104
|
+
--ifm-footer-title-color: #000000;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
/* If you need more specific control: */
|
|
108
|
+
html[data-theme='light'] .footer .footer__link-item,
|
|
109
|
+
html[data-theme='light'] .footer .footer__title,
|
|
110
|
+
html[data-theme='light'] .footer .footer__copyright {
|
|
111
|
+
color: #000000;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
/* Change link color */
|
|
115
|
+
a {
|
|
116
|
+
font-weight: 400; /* Slightly more bold */
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
/* Special styling for documentation links */
|
|
120
|
+
.docs-doc-page a {
|
|
121
|
+
text-decoration: underline;
|
|
122
|
+
color: #0066cc; /* bright blue */
|
|
123
|
+
font-weight: 500;
|
|
124
|
+
transition: color 0.2s ease;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.docs-doc-page a:hover {
|
|
128
|
+
color: #003d7a; /* darker blue on hover */
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
/* Keep navbar and sidebar links with their original styling */
|
|
132
|
+
.navbar a,
|
|
133
|
+
.theme-doc-sidebar-container a {
|
|
134
|
+
text-decoration: none;
|
|
135
|
+
color: var(--ifm-menu-color);
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
/* Keep footer links with their original styling */
|
|
139
|
+
.footer a {
|
|
140
|
+
text-decoration: none;
|
|
141
|
+
color: var(--ifm-footer-link-color);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
/* Target links only in the main markdown content of doc pages */
|
|
145
|
+
.docs-doc-page .theme-doc-markdown a {
|
|
146
|
+
text-decoration: underline;
|
|
147
|
+
color: #0066cc; /* bright blue */
|
|
148
|
+
font-weight: 500;
|
|
149
|
+
transition: color 0.2s ease;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.docs-doc-page .theme-doc-markdown a:hover {
|
|
153
|
+
color: #003d7a; /* darker blue on hover */
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
/* Reset styling for navigation elements, category pages, and utility links */
|
|
157
|
+
.breadcrumbs a,
|
|
158
|
+
.table-of-contents a,
|
|
159
|
+
.pagination-nav a,
|
|
160
|
+
.navbar a,
|
|
161
|
+
.theme-doc-sidebar-container a,
|
|
162
|
+
.footer a,
|
|
163
|
+
.card a,
|
|
164
|
+
article > a,
|
|
165
|
+
.markdown > a,
|
|
166
|
+
.hash-link,
|
|
167
|
+
.theme-edit-this-page {
|
|
168
|
+
text-decoration: none !important;
|
|
169
|
+
color: var(--ifm-link-color) !important;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
/* Keep the pencil icon black too */
|
|
173
|
+
.theme-edit-this-page svg {
|
|
174
|
+
color: var(--ifm-link-color) !important;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
/* Track styles */
|
|
178
|
+
.tracks-container {
|
|
179
|
+
display: flex;
|
|
180
|
+
flex-direction: column;
|
|
181
|
+
align-items: center;
|
|
182
|
+
gap: 32px;
|
|
183
|
+
margin-top: 2rem;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.tracks-row {
|
|
187
|
+
display: flex;
|
|
188
|
+
justify-content: center;
|
|
189
|
+
gap: 32px;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.track-link {
|
|
193
|
+
text-decoration: none;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.track-link.full-width {
|
|
197
|
+
width: 512px; /* 240px * 2 + 32px gap */
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.track-card {
|
|
201
|
+
border: 1px solid #e0e0e0;
|
|
202
|
+
border-radius: 8px;
|
|
203
|
+
padding: 24px;
|
|
204
|
+
width: 240px;
|
|
205
|
+
text-align: center;
|
|
206
|
+
cursor: pointer;
|
|
207
|
+
transition: all 0.2s ease;
|
|
208
|
+
background-color: white;
|
|
209
|
+
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
210
|
+
height: 100%; /* This ensures equal height */
|
|
211
|
+
display: flex;
|
|
212
|
+
flex-direction: column;
|
|
213
|
+
justify-content: center;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.track-card.full-width {
|
|
217
|
+
width: 100%;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.track-card:hover {
|
|
221
|
+
transform: translateY(-2px);
|
|
222
|
+
box-shadow: 0 4px 8px rgba(0,0,0,0.15);
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.track-title {
|
|
226
|
+
margin: 0 0 12px 0;
|
|
227
|
+
color: #333;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.track-description {
|
|
231
|
+
margin: 0;
|
|
232
|
+
color: #666;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
/* Learning path styles */
|
|
236
|
+
.learning-path {
|
|
237
|
+
max-width: 800px;
|
|
238
|
+
margin: 2rem auto;
|
|
239
|
+
padding: 0 1rem;
|
|
240
|
+
display: flex;
|
|
241
|
+
flex-direction: column;
|
|
242
|
+
align-items: center;
|
|
243
|
+
gap: 1rem;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.path-row {
|
|
247
|
+
display: flex;
|
|
248
|
+
justify-content: center;
|
|
249
|
+
gap: 1rem;
|
|
250
|
+
margin: 0;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
.path-row.split {
|
|
254
|
+
width: 100%;
|
|
255
|
+
display: flex;
|
|
256
|
+
justify-content: center;
|
|
257
|
+
gap: 1rem;
|
|
258
|
+
max-width: 732px;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.path-button {
|
|
262
|
+
background-color: #f5f5f5;
|
|
263
|
+
border: 1px solid #e0e0e0;
|
|
264
|
+
border-radius: 8px;
|
|
265
|
+
padding: 1rem 2rem;
|
|
266
|
+
text-decoration: none !important;
|
|
267
|
+
color: inherit !important;
|
|
268
|
+
font-weight: 500;
|
|
269
|
+
text-align: center;
|
|
270
|
+
min-width: 300px;
|
|
271
|
+
display: flex;
|
|
272
|
+
align-items: center;
|
|
273
|
+
justify-content: center;
|
|
274
|
+
line-height: 1.2;
|
|
275
|
+
min-height: 1.2rem;
|
|
276
|
+
transition: all 0.2s ease;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.path-button:hover {
|
|
280
|
+
text-decoration: none !important;
|
|
281
|
+
color: inherit !important;
|
|
282
|
+
transform: translateY(-2px);
|
|
283
|
+
box-shadow: 0 4px 8px rgba(0,0,0,0.15);
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
/* Dark mode adjustments */
|
|
287
|
+
[data-theme='dark'] .path-button {
|
|
288
|
+
background-color: #1f1f20;
|
|
289
|
+
border: none; /* Remove default border */
|
|
290
|
+
position: relative; /* For pseudo-element positioning */
|
|
291
|
+
isolation: isolate; /* Ensures proper layering */
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
/* Gradient border effect - dark mode only */
|
|
295
|
+
[data-theme='dark'] .path-button::before {
|
|
296
|
+
content: '';
|
|
297
|
+
position: absolute;
|
|
298
|
+
top: 0;
|
|
299
|
+
right: 0;
|
|
300
|
+
bottom: 0;
|
|
301
|
+
left: 0;
|
|
302
|
+
border-radius: 8px;
|
|
303
|
+
padding: 1px; /* Border width */
|
|
304
|
+
background: linear-gradient(90deg, #4633eb, #7a5cff);
|
|
305
|
+
-webkit-mask:
|
|
306
|
+
linear-gradient(#fff 0 0) content-box,
|
|
307
|
+
linear-gradient(#fff 0 0);
|
|
308
|
+
mask:
|
|
309
|
+
linear-gradient(#fff 0 0) content-box,
|
|
310
|
+
linear-gradient(#fff 0 0);
|
|
311
|
+
-webkit-mask-composite: xor;
|
|
312
|
+
mask-composite: exclude;
|
|
313
|
+
pointer-events: none;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
/* Hover effects - dark mode */
|
|
317
|
+
[data-theme='dark'] .path-button:hover {
|
|
318
|
+
transform: translateY(-2px);
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
[data-theme='dark'] .path-button:hover::before {
|
|
322
|
+
box-shadow: 0 0 15px rgba(74, 51, 235, 0.3); /* Subtle blue glow */
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.path-card {
|
|
326
|
+
background-color: white;
|
|
327
|
+
border: 1px solid #e0e0e0;
|
|
328
|
+
border-radius: 8px;
|
|
329
|
+
padding: 1rem;
|
|
330
|
+
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.path-card.full-width {
|
|
334
|
+
width: 1000px;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.path-card.equal-width {
|
|
338
|
+
width: 480px;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.card-title {
|
|
342
|
+
margin: 0 0 1.5rem 0;
|
|
343
|
+
text-align: center;
|
|
344
|
+
color: var(--ifm-color-primary);
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
.card-content {
|
|
348
|
+
display: flex;
|
|
349
|
+
flex-direction: column;
|
|
350
|
+
gap: 1rem;
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
/* Dark mode adjustments */
|
|
354
|
+
[data-theme='dark'] .path-card {
|
|
355
|
+
background-color: #2a2a2b;
|
|
356
|
+
border-color: #3a3a3b;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
[data-theme='dark'] .card-title {
|
|
360
|
+
color: white;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
/* Algolia DocSearch Dark Mode Styles */
|
|
364
|
+
html[data-theme='dark'] .DocSearch-Hits {
|
|
365
|
+
background-color: #1A1A1B !important;
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
html[data-theme='dark'] .DocSearch-Hit {
|
|
369
|
+
background-color: #1A1A1B !important;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
html[data-theme='dark'] .DocSearch-Hit-source {
|
|
373
|
+
background-color: #1A1A1B !important;
|
|
374
|
+
color: #ffffff !important;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
html[data-theme='dark'] .DocSearch-Hit-content-wrapper {
|
|
378
|
+
color: #ffffff !important;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
html[data-theme='dark'] .DocSearch-Hit-title {
|
|
382
|
+
color: #ffffff !important;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
html[data-theme='dark'] .DocSearch-Hit-path {
|
|
386
|
+
color: #a0a0a0 !important;
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
html[data-theme='dark'] .DocSearch-Hit-icon {
|
|
390
|
+
color: #ffffff !important;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
html[data-theme='dark'] .DocSearch-Hit-action {
|
|
394
|
+
color: #ffffff !important;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
html[data-theme='dark'] .DocSearch-Hit[aria-selected='true'] {
|
|
398
|
+
background-color: #2a2a2b !important;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
html[data-theme='dark'] .DocSearch-Modal {
|
|
402
|
+
background-color: #1A1A1B !important;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
html[data-theme='dark'] .DocSearch-SearchBar {
|
|
406
|
+
background-color: #1A1A1B !important;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
html[data-theme='dark'] .DocSearch-Form {
|
|
410
|
+
background-color: #2a2a2b !important;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
html[data-theme='dark'] .DocSearch-Input {
|
|
414
|
+
color: #ffffff !important;
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
html[data-theme='dark'] .DocSearch-Reset {
|
|
418
|
+
color: #ffffff !important;
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
html[data-theme='dark'] .DocSearch-Cancel {
|
|
422
|
+
color: #ffffff !important;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
html[data-theme='dark'] .DocSearch-Hit:first-child {
|
|
426
|
+
background-color: #1A1A1B !important;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
html[data-theme='dark'] .DocSearch-Hit--empty,
|
|
430
|
+
html[data-theme='dark'] .DocSearch-Hit[aria-label="No results"],
|
|
431
|
+
html[data-theme='dark'] .DocSearch-Hit-content-wrapper:empty,
|
|
432
|
+
html[data-theme='dark'] .DocSearch-Hit[style*="background-color: white"],
|
|
433
|
+
html[data-theme='dark'] .DocSearch-Hit {
|
|
434
|
+
background-color: #1A1A1B !important;
|
|
435
|
+
color: #ffffff !important;
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
html[data-theme='dark'] .DocSearch-Hits > * {
|
|
439
|
+
background-color: #1A1A1B !important;
|
|
440
|
+
color: #ffffff !important;
|
|
441
|
+
border-color: #1A1A1B !important;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
html[data-theme='dark'] .DocSearch-Hits > *:empty {
|
|
445
|
+
background-color: #1A1A1B !important;
|
|
446
|
+
color: #ffffff !important;
|
|
447
|
+
min-height: 48px; /* or whatever height matches the box */
|
|
448
|
+
border-radius: 8px;
|
|
449
|
+
border: none;
|
|
450
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CSS files with the .module.css suffix will be treated as CSS modules
|
|
3
|
+
* and scoped locally.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
.heroBanner {
|
|
7
|
+
padding: 3rem 0 2rem 0;
|
|
8
|
+
text-align: center;
|
|
9
|
+
position: relative;
|
|
10
|
+
overflow: hidden;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
@media screen and (max-width: 996px) {
|
|
14
|
+
.heroBanner {
|
|
15
|
+
padding: 2rem;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.buttons {
|
|
20
|
+
display: flex;
|
|
21
|
+
align-items: center;
|
|
22
|
+
justify-content: center;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.iconContainer {
|
|
26
|
+
display: flex;
|
|
27
|
+
justify-content: center;
|
|
28
|
+
align-items: center;
|
|
29
|
+
margin-top: 2rem;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.icon {
|
|
33
|
+
width: 40px;
|
|
34
|
+
height: 40px;
|
|
35
|
+
margin: 0 0.5rem;
|
|
36
|
+
object-fit: contain; /* This ensures the image is scaled properly */
|
|
37
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import clsx from 'clsx';
|
|
2
|
+
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
|
|
3
|
+
import useBaseUrl from '@docusaurus/useBaseUrl';
|
|
4
|
+
import Layout from '@theme/Layout';
|
|
5
|
+
import HomepageFeatures from '@site/src/components/HomepageFeatures';
|
|
6
|
+
import Heading from '@theme/Heading';
|
|
7
|
+
import styles from './index.module.css';
|
|
8
|
+
|
|
9
|
+
function HomepageHeader() {
|
|
10
|
+
const {siteConfig} = useDocusaurusContext();
|
|
11
|
+
return (
|
|
12
|
+
<header
|
|
13
|
+
className={clsx('hero hero--primary', styles.heroBanner)}
|
|
14
|
+
style={{
|
|
15
|
+
backgroundImage: `url('/img/empty-background.png')`,
|
|
16
|
+
backgroundSize: 'cover',
|
|
17
|
+
backgroundPosition: 'center',
|
|
18
|
+
}}
|
|
19
|
+
>
|
|
20
|
+
<div className="container">
|
|
21
|
+
<Heading as="h1" className="hero__title">
|
|
22
|
+
{siteConfig.title}
|
|
23
|
+
</Heading>
|
|
24
|
+
<p className="hero__subtitle">{siteConfig.tagline}</p>
|
|
25
|
+
</div>
|
|
26
|
+
</header>
|
|
27
|
+
);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export default function Home(): JSX.Element {
|
|
31
|
+
const {siteConfig} = useDocusaurusContext();
|
|
32
|
+
return (
|
|
33
|
+
<Layout
|
|
34
|
+
title={`${siteConfig.title}`}
|
|
35
|
+
description="Get started with the Powerhouse applications <head />">
|
|
36
|
+
<HomepageHeader />
|
|
37
|
+
<main>
|
|
38
|
+
<HomepageFeatures />
|
|
39
|
+
</main>
|
|
40
|
+
</Layout>
|
|
41
|
+
);
|
|
42
|
+
}
|
package/static/.nojekyll
ADDED
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<svg width="850" height="114" viewBox="0 0 983 114" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M71.2919 0L24.3415 38.8772C17.4548 44.5798 16.9539 54.9659 23.26 61.3047L39.5028 77.6318C44.2684 82.4221 45.2996 89.7834 42.0335 95.6988L31.929 114H15.2C6.80527 114 0 107.195 0 98.8V15.2C0 6.80527 6.80527 0 15.2 0H71.2919ZM80.111 0L71.3412 15.9758C68.1078 21.866 69.1255 29.1804 73.8441 33.9641L91.0751 51.4331C97.3674 57.8124 96.8044 68.2227 89.8607 73.8861L40.6782 114H98.8C107.195 114 114 107.195 114 98.8V15.2C114 6.80527 107.195 0 98.8 0H80.111Z" fill="#F7F7F7"/>
|
|
3
|
+
<path d="M144 97.8759H163.889V71.5109H181.229C198.058 71.5109 209.787 59.6569 209.787 42.6934C209.787 27.0584 198.058 16.1241 181.229 16.1241H144V97.8759ZM163.889 53.6277V34.0073H180.107C185.92 34.0073 189.898 37.9927 189.898 43.8175C189.898 49.6423 185.92 53.6277 180.107 53.6277H163.889Z" fill="#F7F7F7"/>
|
|
4
|
+
<path d="M258.349 99C283.339 99 300.78 81.8321 300.78 56.8978C300.78 32.0657 283.339 15 258.349 15C233.36 15 215.919 32.0657 215.919 56.8978C215.919 81.8321 233.36 99 258.349 99ZM236.318 56.8978C236.318 43.2044 245.294 33.8029 258.349 33.8029C271.405 33.8029 280.483 43.2044 280.483 56.8978C280.483 70.7956 271.405 80.1971 258.349 80.1971C245.294 80.1971 236.318 70.7956 236.318 56.8978Z" fill="#F7F7F7"/>
|
|
5
|
+
<path d="M326.44 97.8759H347.145L365.096 45.146L382.946 97.8759H403.651L426.6 16.1241H406.303L391.921 68.9562L375.908 16.1241H354.387L338.271 68.9562L323.992 16.1241H303.695L326.44 97.8759Z" fill="#F7F7F7"/>
|
|
6
|
+
<path d="M435.545 97.8759H496.029V80.4015H455.434V64.6642H489.909V47.1898H455.434V33.4964H496.029V16.1241H435.545V97.8759Z" fill="#F7F7F7"/>
|
|
7
|
+
<path d="M510.847 97.8759H530.736V68.3431H539.202L557.969 97.8759H580.408L559.907 66.4015C570.005 62.7226 576.634 53.4234 576.634 41.9781C576.634 26.7518 565.721 16.1241 550.115 16.1241H510.847V97.8759ZM530.736 50.4599V34.0073H548.891C553.583 34.0073 556.745 37.3796 556.745 42.2847C556.745 47.0876 553.583 50.4599 548.891 50.4599H530.736Z" fill="#F7F7F7"/>
|
|
8
|
+
<path d="M590.033 97.8759H609.923V65.2774H640.011V97.8759H659.799V16.1241H640.011V47.3942H609.923V16.1241H590.033V97.8759Z" fill="#F7F7F7"/>
|
|
9
|
+
<path d="M714.443 99C739.432 99 756.873 81.8321 756.873 56.8978C756.873 32.0657 739.432 15 714.443 15C689.454 15 672.013 32.0657 672.013 56.8978C672.013 81.8321 689.454 99 714.443 99ZM692.412 56.8978C692.412 43.2044 701.387 33.8029 714.443 33.8029C727.498 33.8029 736.576 43.2044 736.576 56.8978C736.576 70.7956 727.498 80.1971 714.443 80.1971C701.387 80.1971 692.412 70.7956 692.412 56.8978Z" fill="#F7F7F7"/>
|
|
10
|
+
<path d="M802.987 99C823.488 99 837.869 84.5912 837.869 63.9489V16.1241H818.082V65.5839C818.082 74.4745 811.86 80.6058 802.987 80.6058C794.113 80.6058 787.993 74.4745 787.993 65.5839V16.1241L768.104 28.1241V63.9489C768.104 84.5912 782.485 99 802.987 99Z" fill="#F7F7F7"/>
|
|
11
|
+
<path d="M881.036 99C898.069 99 910.309 89.8029 910.309 74.1679C910.309 59.9635 899.803 54.2409 887.768 49.5401C876.446 45.0438 871.244 43.6131 871.244 39.1168C871.244 35.6423 874.508 32.8832 879.098 32.8832C884.096 32.8832 887.36 36.1533 887.36 41.4672H906.739C906.739 25.7299 895.927 15 879.098 15C863.391 15 850.845 23.5839 850.845 37.9927C850.845 52.0949 862.779 57.7153 875.426 63.2336C883.382 66.8102 889.604 69.0584 889.604 74.6788C889.604 79.1752 885.83 81.5256 880.628 81.5256C873.284 81.5256 869.51 76.927 869.51 71H849.111C849.111 87.4526 862.065 99 881.036 99Z" fill="#F7F7F7"/>
|
|
12
|
+
<path d="M922.516 97.8759H983V80.4015H942.406V64.6642H976.88V47.1898H942.406V33.4964H983V16.1241H922.516V97.8759Z" fill="#F7F7F7"/>
|
|
13
|
+
</svg>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<svg width="850" height="114" viewBox="0 0 983 114" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M71.2919 0L24.3415 38.8772C17.4548 44.5798 16.9539 54.9659 23.26 61.3047L39.5028 77.6318C44.2684 82.4221 45.2996 89.7834 42.0335 95.6988L31.929 114H15.2C6.80527 114 0 107.195 0 98.8V15.2C0 6.80527 6.80527 0 15.2 0H71.2919ZM80.111 0L71.3412 15.9758C68.1078 21.866 69.1255 29.1804 73.8441 33.9641L91.0751 51.4331C97.3674 57.8124 96.8044 68.2227 89.8607 73.8861L40.6782 114H98.8C107.195 114 114 107.195 114 98.8V15.2C114 6.80527 107.195 0 98.8 0H80.111Z" fill="#111111"/>
|
|
3
|
+
<path d="M144 97.8759H163.889V71.5109H181.229C198.058 71.5109 209.787 59.6569 209.787 42.6934C209.787 27.0584 198.058 16.1241 181.229 16.1241H144V97.8759ZM163.889 53.6277V34.0073H180.107C185.92 34.0073 189.898 37.9927 189.898 43.8175C189.898 49.6423 185.92 53.6277 180.107 53.6277H163.889Z" fill="#111111"/>
|
|
4
|
+
<path d="M258.349 99C283.339 99 300.78 81.8321 300.78 56.8978C300.78 32.0657 283.339 15 258.349 15C233.36 15 215.919 32.0657 215.919 56.8978C215.919 81.8321 233.36 99 258.349 99ZM236.318 56.8978C236.318 43.2044 245.294 33.8029 258.349 33.8029C271.405 33.8029 280.483 43.2044 280.483 56.8978C280.483 70.7956 271.405 80.1971 258.349 80.1971C245.294 80.1971 236.318 70.7956 236.318 56.8978Z" fill="#111111"/>
|
|
5
|
+
<path d="M326.44 97.8759H347.145L365.096 45.146L382.946 97.8759H403.651L426.6 16.1241H406.303L391.921 68.9562L375.908 16.1241H354.387L338.271 68.9562L323.992 16.1241H303.695L326.44 97.8759Z" fill="#111111"/>
|
|
6
|
+
<path d="M435.545 97.8759H496.029V80.4015H455.434V64.6642H489.909V47.1898H455.434V33.4964H496.029V16.1241H435.545V97.8759Z" fill="#111111"/>
|
|
7
|
+
<path d="M510.847 97.8759H530.736V68.3431H539.202L557.969 97.8759H580.408L559.907 66.4015C570.005 62.7226 576.634 53.4234 576.634 41.9781C576.634 26.7518 565.721 16.1241 550.115 16.1241H510.847V97.8759ZM530.736 50.4599V34.0073H548.891C553.583 34.0073 556.745 37.3796 556.745 42.2847C556.745 47.0876 553.583 50.4599 548.891 50.4599H530.736Z" fill="#111111"/>
|
|
8
|
+
<path d="M590.033 97.8759H609.923V65.2774H640.011V97.8759H659.799V16.1241H640.011V47.3942H609.923V16.1241H590.033V97.8759Z" fill="#111111"/>
|
|
9
|
+
<path d="M714.443 99C739.432 99 756.873 81.8321 756.873 56.8978C756.873 32.0657 739.432 15 714.443 15C689.454 15 672.013 32.0657 672.013 56.8978C672.013 81.8321 689.454 99 714.443 99ZM692.412 56.8978C692.412 43.2044 701.387 33.8029 714.443 33.8029C727.498 33.8029 736.576 43.2044 736.576 56.8978C736.576 70.7956 727.498 80.1971 714.443 80.1971C701.387 80.1971 692.412 70.7956 692.412 56.8978Z" fill="#111111"/>
|
|
10
|
+
<path d="M802.987 99C823.488 99 837.869 84.5912 837.869 63.9489V16.1241H818.082V65.5839C818.082 74.4745 811.86 80.6058 802.987 80.6058C794.113 80.6058 787.993 74.4745 787.993 65.5839V16.1241L768.104 28.1241V63.9489C768.104 84.5912 782.485 99 802.987 99Z" fill="#111111"/>
|
|
11
|
+
<path d="M881.036 99C898.069 99 910.309 89.8029 910.309 74.1679C910.309 59.9635 899.803 54.2409 887.768 49.5401C876.446 45.0438 871.244 43.6131 871.244 39.1168C871.244 35.6423 874.508 32.8832 879.098 32.8832C884.096 32.8832 887.36 36.1533 887.36 41.4672H906.739C906.739 25.7299 895.927 15 879.098 15C863.391 15 850.845 23.5839 850.845 37.9927C850.845 52.0949 862.779 57.7153 875.426 63.2336C883.382 66.8102 889.604 69.0584 889.604 74.6788C889.604 79.1752 885.83 81.5256 880.628 81.5256C873.284 81.5256 869.51 76.927 869.51 71H849.111C849.111 87.4526 862.065 99 881.036 99Z" fill="#111111"/>
|
|
12
|
+
<path d="M922.516 97.8759H983V80.4015H942.406V64.6642H976.88V47.1898H942.406V33.4964H983V16.1241H922.516V97.8759Z" fill="#111111"/>
|
|
13
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="344" height="171" viewBox="0 0 344 171" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M176.5 82C176.5 123.697 210.303 157.5 252 157.5H327.5V151.474L344 161L327.5 170.526V166.5H252C214.318 166.5 182.398 141.835 171.502 107.769C160.159 141.056 128.626 165 91.5 165H16.5V170.526L0 161L16.5 151.474V156H91.5C133.197 156 167 122.197 167 80.5V0H176.5V82Z" fill="#4FC86F"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="25" height="14" viewBox="0 0 25 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M12.2299 8.89666C11.611 8.89666 10.9921 8.81929 10.3989 8.63878L4.10669 6.78205V10.2118C4.10669 10.9597 5.29293 11.8107 5.29293 11.8107C5.29293 11.8107 8.23275 13.6932 12.2299 13.6932C16.227 13.6932 19.3473 11.8107 19.3473 11.8107C19.3473 11.8107 20.5336 10.9597 20.5336 10.2118V6.73047L14.0866 8.63878C13.4677 8.81929 12.8488 8.89666 12.2299 8.89666Z" fill="#329DFF"/>
|
|
3
|
+
<path d="M23.9634 3.24928L13.803 0.232091C12.7972 -0.0773636 11.7142 -0.0773636 10.6826 0.232091L0.522205 3.24928C-0.174068 3.45558 -0.174068 4.46131 0.522205 4.66761L10.6826 7.68479C11.6884 7.99425 12.7714 7.99425 13.803 7.68479L22.6998 5.05443V5.85388C22.5193 5.93125 22.3645 6.11176 22.3645 6.31806V6.70488C22.3645 6.93697 22.5193 7.11748 22.6998 7.16906L22.1067 8.53581C22.0551 8.69054 22.1325 8.84528 22.2872 8.87107L22.7772 8.92263C22.8803 8.92263 22.9834 8.92263 23.0866 8.92263L23.5766 8.87107C23.7313 8.84528 23.8345 8.69054 23.7571 8.53581L23.164 7.16906C23.3703 7.0917 23.4992 6.91118 23.4992 6.70488V6.31806C23.4992 6.11176 23.3703 5.93125 23.164 5.85388V4.89971L23.9376 4.66761C24.6597 4.46131 24.6597 3.45558 23.9634 3.24928Z" fill="#329DFF"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M21.6 12C21.6 6.69807 17.3019 2.4 12 2.4C6.69807 2.4 2.4 6.69807 2.4 12C2.4 17.3019 6.69807 21.6 12 21.6V24C5.37258 24 0 18.6274 0 12C0 5.37258 5.37258 0 12 0C18.6274 0 24 5.37258 24 12C24 18.6274 18.6274 24 12 24V21.6C17.3019 21.6 21.6 17.3019 21.6 12Z" fill="#329DFF"/>
|
|
3
|
+
<path d="M17.5955 6.31551L13.8113 13.6106L10.3003 10.0997L17.5955 6.31551Z" fill="#329DFF"/>
|
|
4
|
+
<path d="M6.43351 17.4775L10.3831 10.017L13.894 13.5279L6.43351 17.4775Z" fill="#329DFF"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="20" viewBox="0 0 24 20" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M18.7835 3.40332C18.782 3.40413 18.7804 3.40455 18.7787 3.40455C18.391 3.40468 18.0418 3.43434 17.7142 3.49844C17.2893 3.57997 16.8645 3.36502 16.6713 2.96972C15.7758 1.13652 13.9869 0 11.9978 0C10.0111 0 8.2198 1.13652 7.3242 2.96972C7.13108 3.36255 6.71104 3.58244 6.28616 3.49844C5.94337 3.4342 5.59333 3.40208 5.21431 3.40208C2.33682 3.40208 0 5.79118 0 8.72883C0 11.0167 1.41947 13.045 3.53171 13.7715C3.9252 13.9073 4.19073 14.2829 4.19073 14.7079V18.5161C4.19073 19.3356 4.8551 20 5.67464 20H18.3254C19.1449 20 19.8093 19.3356 19.8093 18.5161V14.7079C19.8093 14.2829 20.0748 13.9074 20.4683 13.7715C22.5806 13.0451 24 11.0191 24 8.72883C24 5.79211 21.6622 3.4035 18.7882 3.40209C18.7866 3.40208 18.7849 3.40251 18.7835 3.40332V3.40332Z" fill="#4FC86F"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M23.3729 0C23.7191 0 23.9998 0.284388 23.9998 0.635197L24 23.3648C24 23.7156 23.7193 24 23.3731 24H0.627081C0.280859 24 0.000190404 23.7156 0.000190404 23.3648L0 0.635197C0 0.284388 0.280669 0 0.626891 0C12.6621 0 14.6725 0 23.3729 0ZM17.3239 5.68963L17.285 5.72623L10.0148 13.1852L7.77787 10.89C7.55198 10.6582 7.19312 10.646 6.95323 10.8534L6.9144 10.89L5.18745 12.6619C4.96205 12.8939 4.95004 13.2619 5.15153 13.5083L5.18709 13.5482L9.57925 18.0633L9.61809 18.0999C9.84465 18.2958 10.1773 18.2957 10.4036 18.0996L10.4424 18.0629L19.8754 8.38412C20.1013 8.15234 20.1132 7.78414 19.9111 7.53801L19.8754 7.49816L18.1485 5.72624C17.9226 5.49449 17.5638 5.48228 17.3239 5.68963Z" fill="#4FC86F"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M11.9978 1.95312C7.6358 1.95312 3.9978 3.51213 3.9978 5.95312C3.9978 8.39412 7.6358 9.95312 11.9978 9.95312C16.3598 9.95312 19.9978 8.39412 19.9978 5.95312C19.9978 3.51213 16.3598 1.95312 11.9978 1.95312ZM3.9978 9.57812V11.9531C3.9978 14.3941 7.6358 15.9531 11.9978 15.9531C16.3598 15.9531 19.9978 14.3941 19.9978 11.9531V9.57812C18.1838 11.0681 15.3558 11.9531 11.9978 11.9531C8.6398 11.9531 5.8118 11.0681 3.9978 9.57812ZM3.9978 15.5781V17.9531C3.9978 20.3941 7.6358 21.9531 11.9978 21.9531C16.3598 21.9531 19.9978 20.3941 19.9978 17.9531V15.5781C18.1838 17.0681 15.3558 17.9531 11.9978 17.9531C8.6398 17.9531 5.8118 17.0681 3.9978 15.5781Z" fill="#FFCF24"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="23" height="24" viewBox="0 0 23 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M17.2466 0C16.9418 0 16.6359 0.112806 16.4197 0.337203C15.7803 1.00439 13.4792 3.40558 12.9686 3.93957L2.61248 14.7454L1.46192 15.9454C1.30126 16.1134 1.21881 16.351 1.1743 16.5838L0.0236103 22.5873C-0.137389 23.4273 0.548928 24.1425 1.35404 23.9757C2.07314 23.8245 6.38804 22.9245 7.10714 22.7745C7.32989 22.7277 7.55782 22.6413 7.71836 22.4745L8.86905 21.2734L19.2246 10.4675C19.7363 9.9347 22.0375 7.53228 22.6769 6.86629C22.8919 6.64069 23 6.3215 23 6.00351C23 4.03914 22.5205 2.63515 21.5257 1.57557C20.5218 0.506379 19.1809 0 17.2466 0ZM17.6997 2.42275C18.7381 2.48635 19.4109 2.73479 19.872 3.22679C20.3435 3.72838 20.6413 4.42437 20.7057 5.48635C20.0756 6.14274 19.1533 7.09068 18.3977 7.87907C17.4858 6.92748 16.3611 5.75394 15.4491 4.80235C16.2058 4.01396 17.0706 3.07914 17.6997 2.42275ZM3.43956 17.3338L6.38805 20.4105L6.28017 20.5234C5.52117 20.6818 3.98846 21.0165 2.57661 21.3117L3.3317 17.4466L3.43956 17.3338Z" fill="#4FC86F"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="18" height="25" viewBox="0 0 18 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M1.12523 13.1383L10.4232 1.65364C10.832 1.14866 11.6485 1.43774 11.6485 2.08747L11.6485 9.8883C11.6485 10.2691 11.9572 10.5778 12.338 10.5778H16.5547C17.1347 10.5778 17.4555 11.2503 17.0906 11.701L7.79264 23.1857C7.38381 23.6907 6.56731 23.4016 6.56731 22.7519L6.56731 14.9511C6.56731 14.5703 6.25863 14.2616 5.87785 14.2616H1.66109C1.08111 14.2616 0.760287 13.5891 1.12523 13.1383Z" fill="#F2CB29"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="22" height="24" viewBox="0 0 22 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M11.4925 0.127095C11.1882 -0.0423832 10.8117 -0.0423832 10.5074 0.127095L0.725921 5.58656L11.0193 11.377L21.2736 5.58656L11.4925 0.127095ZM11.7333 12.6028V23.9999L21.5148 18.5405C21.8154 18.3733 22 18.0659 22 17.7328V6.8055L11.7333 12.6028ZM0 17.7329C0 18.0648 0.184553 18.3734 0.485226 18.5405L10.2667 24V12.5808L0.000250352 6.80562L0 17.7329Z" fill="#A577EE"/>
|
|
3
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="120" height="120" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M75.0442 0L25.6227 40.9234C18.3734 46.9262 17.8462 57.8589 24.4842 64.5313L41.5819 81.7176C46.5983 86.7601 47.6837 94.5088 44.2458 100.736L33.6095 120H16C7.16344 120 0 112.837 0 104V16C0 7.16344 7.16345 0 16 0H75.0442ZM84.3273 0L75.096 16.8166C71.6924 23.0169 72.7637 30.7162 77.7307 35.7517L95.8685 54.1401C102.492 60.8552 101.899 71.8134 94.5902 77.7749L42.8191 120H104C112.837 120 120 112.837 120 104V16C120 7.16345 112.837 0 104 0H84.3273Z" fill="#F7F7F7"/>
|
|
3
|
+
</svg>
|