|
20 | 20 |
|
21 | 21 | The Open Bank Project (OBP) Portal is a comprehensive developer portal that provides access to banking APIs and tools for building financial applications. It serves as the gateway for developers, fintech companies, and financial institutions to explore, integrate, and leverage open banking capabilities. |
22 | 22 |
|
23 | | -## Key Features |
24 | | -
|
25 | | -- API Explorer for testing and discovering banking APIs |
26 | | -- Consumer management and API key generation |
27 | | -- User account management and authentication |
28 | | -- Comprehensive documentation and guides |
29 | | -- OAuth2 compliance and security features |
30 | | -- Developer tools and resources |
31 | | -
|
32 | 23 | ## About Open Bank Project |
33 | 24 |
|
34 | | -The Open Bank Project is an open source API and App store for banks that empowers financial institutions to securely and rapidly enhance their digital offerings using an ecosystem of 3rd party applications and services. The project provides a RESTful API that allows developers to build financial applications on top of banking data. |
35 | | -
|
36 | | -## Technology |
37 | | -
|
38 | | -This portal is built with modern web technologies including SvelteKit, TypeScript, and Skeleton UI. It follows best practices for security, accessibility, and user experience. |
39 | | -
|
40 | | -## Get Involved |
41 | | -
|
42 | | -The Open Bank Project is an open source initiative. You can contribute to the project, report issues, or explore the codebase on our [GitHub repository](https://github.com/OpenBankProject). |
43 | | -
|
44 | | -## License |
45 | | -
|
46 | | -This project is licensed under the GNU Affero General Public License v3.0 (AGPL-3.0). |
47 | | -
|
48 | | -## Contact & Support |
49 | | -
|
50 | | -For questions, support, or more information about the Open Bank Project, please visit: |
51 | | -
|
52 | | -- [Official Website](https://www.openbankproject.com) |
53 | | -- [GitHub Organization](https://github.com/OpenBankProject) |
54 | | -- [Open Bank Project Chat](${env.PUBLIC_OBP_CHAT_URL || 'https://chat.openbankproject.com'}) |
55 | | -
|
56 | | ---- |
57 | | -
|
58 | | -© TESOBE 2011-${Math.max(new Date().getFullYear(), 2026)}. All rights reserved.`; |
| 25 | +The Open Bank Project is an open source API and App store for banks that empowers financial institutions to securely and rapidly enhance their digital offerings using an ecosystem of 3rd party applications and services. The project provides a RESTful API that allows developers to build financial applications on top of banking data.`; |
59 | 26 |
|
60 | 27 | onMount(async () => { |
61 | 28 | // Dynamically import markdown-it to avoid SSR issues |
@@ -91,6 +58,63 @@ For questions, support, or more information about the Open Bank Project, please |
91 | 58 | </div> |
92 | 59 | {/if} |
93 | 60 |
|
| 61 | + <!-- Rendered outside the markdown so it survives PUBLIC_ABOUT_TEXT overrides --> |
| 62 | + <h2 class="h3 mt-8" data-testid="useful-links-title">Useful Links</h2> |
| 63 | + <ul class="mt-4 list-disc space-y-2 pl-5"> |
| 64 | + <li> |
| 65 | + <a |
| 66 | + href="/status" |
| 67 | + class="text-primary-600 dark:text-primary-400 underline hover:text-primary-800 dark:hover:text-primary-300" |
| 68 | + data-testid="link-status" |
| 69 | + > |
| 70 | + Status |
| 71 | + </a> |
| 72 | + — check the health of this portal and its services |
| 73 | + </li> |
| 74 | + <li> |
| 75 | + <a |
| 76 | + href="https://www.openbankproject.com" |
| 77 | + target="_blank" |
| 78 | + rel="noopener noreferrer" |
| 79 | + class="text-primary-600 dark:text-primary-400 underline hover:text-primary-800 dark:hover:text-primary-300" |
| 80 | + data-testid="link-website" |
| 81 | + > |
| 82 | + Official Website |
| 83 | + </a> |
| 84 | + </li> |
| 85 | + <li> |
| 86 | + <a |
| 87 | + href="https://github.com/OpenBankProject" |
| 88 | + target="_blank" |
| 89 | + rel="noopener noreferrer" |
| 90 | + class="text-primary-600 dark:text-primary-400 underline hover:text-primary-800 dark:hover:text-primary-300" |
| 91 | + data-testid="link-github" |
| 92 | + > |
| 93 | + GitHub Organization |
| 94 | + </a> |
| 95 | + </li> |
| 96 | + <li> |
| 97 | + <a |
| 98 | + href={env.PUBLIC_OBP_CHAT_URL || 'https://chat.openbankproject.com'} |
| 99 | + target="_blank" |
| 100 | + rel="noopener noreferrer" |
| 101 | + class="text-primary-600 dark:text-primary-400 underline hover:text-primary-800 dark:hover:text-primary-300" |
| 102 | + data-testid="link-chat" |
| 103 | + > |
| 104 | + Open Bank Project Chat |
| 105 | + </a> |
| 106 | + </li> |
| 107 | + </ul> |
| 108 | + |
| 109 | + <h2 class="h3 mt-8" data-testid="license-title">License</h2> |
| 110 | + <p class="mt-4"> |
| 111 | + This project is licensed under the GNU Affero General Public License v3.0 (AGPL-3.0). |
| 112 | + </p> |
| 113 | + |
| 114 | + <p class="mt-8 border-t border-surface-200-800 pt-6 text-sm text-surface-600-400"> |
| 115 | + © TESOBE 2011-{Math.max(new Date().getFullYear(), 2026)}. All rights reserved. |
| 116 | + </p> |
| 117 | + |
94 | 118 | <!-- Version Information Footer --> |
95 | 119 | <div class="mt-12 border-t border-surface-200-800 pt-8"> |
96 | 120 | <div class="text-sm text-surface-600-400"> |
|
0 commit comments