refactor: Update pricing page with new feature description

This commit is contained in:
Simon Larsen 2024-08-13 12:12:17 +01:00
parent c53584e9d5
commit 9355f185a9
No known key found for this signature in database
GPG Key ID: 96C5DCA24769DBCA
4 changed files with 4 additions and 6 deletions

View File

@ -344,7 +344,7 @@
d="M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z" d="M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z"
clip-rule="evenodd" /> clip-rule="evenodd" />
</svg> </svg>
<span class="text-sm text-gray-500">Dedicated Support Channel</span> <span class="text-sm text-gray-500">Deployed on Multi Cloud</span>
</li> </li>
<li class="flex space-x-3"> <li class="flex space-x-3">

View File

@ -47,7 +47,7 @@ const init: PromiseVoidFunction = async (): Promise<void> => {
// Connect to Postgres database // Connect to Postgres database
await PostgresAppInstance.connect( await PostgresAppInstance.connect(
PostgresAppInstance.getDatasourceOptions(),
); );
// Connect to Redis // Connect to Redis

View File

@ -57,7 +57,7 @@ const init: PromiseVoidFunction = async (): Promise<void> => {
// connect to the database. // connect to the database.
await PostgresAppInstance.connect( await PostgresAppInstance.connect(
PostgresAppInstance.getDatasourceOptions(),
); );
// connect redis // connect redis

View File

@ -31,9 +31,7 @@ const init: PromiseVoidFunction = async (): Promise<void> => {
}); });
// connect to the database. // connect to the database.
await PostgresAppInstance.connect( await PostgresAppInstance.connect();
PostgresAppInstance.getDatasourceOptions(),
);
AcmeWriteCertificatesJob.init(); AcmeWriteCertificatesJob.init();