diff --git a/README.md b/README.md index c9c7cbf..2894144 100644 --- a/README.md +++ b/README.md @@ -103,6 +103,7 @@ We also got some additional features we thought about and couldn't implement yet - **Full Test Coverage**: We want to have full test coverage for the platform. - **Automated Testing**: We already have implemented some automated testing and linting, also in the `release.yml` action, where the app is automatically deployed. If we add full test coverage, we can also add automated testing to the deployment process (spec and e2e tests). - **Dynamic OG Tags**: We want to implement dynamic OG tags for the vote pages, so users can share the vote on social media platforms even better. +- **Fees and Tokenization**: In a production environment, fees will need to be covered either by the vote creator or the participants. This could involve tokenization mechanisms where a small fee is charged for vote creation or participation, ensuring the platform remains sustainable. # Contributing diff --git a/apps/frontend/src/app/app.component.html b/apps/frontend/src/app/app.component.html index 60dcb1e..20dcb21 100644 --- a/apps/frontend/src/app/app.component.html +++ b/apps/frontend/src/app/app.component.html @@ -1,4 +1,5 @@
- Log in to your Stellar account using your private key. + Connect to your Stellar wallet using your private key.
- Don't have an account? + Don't have a wallet? RegisterCreate one
diff --git a/apps/frontend/src/app/features/register/register.component.html b/apps/frontend/src/app/features/register/register.component.html index 2dd6191..32286f8 100644 --- a/apps/frontend/src/app/features/register/register.component.html +++ b/apps/frontend/src/app/features/register/register.component.html @@ -9,13 +9,13 @@ /> } @else if (successMessage) {- Register a new account on the Stellar network, please ensure you save your + Create a new wallet on the Stellar network, please ensure you save your wallets private key in a secure place on the next screen.
@@ -133,9 +133,9 @@- Already have an account? + Already have a wallet? Log inConnect instead
diff --git a/apps/frontend/src/app/shared/navigation/banner/news-banner.component.css b/apps/frontend/src/app/shared/navigation/banner/news-banner.component.css new file mode 100644 index 0000000..e69de29 diff --git a/apps/frontend/src/app/shared/navigation/banner/news-banner.component.html b/apps/frontend/src/app/shared/navigation/banner/news-banner.component.html new file mode 100644 index 0000000..35e6025 --- /dev/null +++ b/apps/frontend/src/app/shared/navigation/banner/news-banner.component.html @@ -0,0 +1,103 @@ +@if (!isDismissed) { ++ + DEV Challenge + + See our submission post for VoteVault! + +
+