-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #58 from bzr-sys/diagrams
Add BaaS architecture comparison diagrams
- Loading branch information
Showing
20 changed files
with
47 additions
and
1 deletion.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
import { Image } from "astro:assets"; | ||
import architectureTraditionalImage from "../images/architecture-traditional.png"; | ||
import architectureBazaarImage from "../images/architecture-bazaar.png"; | ||
--- | ||
|
||
<div class="px-4 pt-20"> | ||
<h2 class="pb-12 text-center text-4xl font-bold">Not your typical BaaS</h2> | ||
|
||
<div | ||
class="mx-auto grid max-w-screen-sm gap-12 lg:max-w-screen-lg lg:grid-cols-2" | ||
> | ||
<div class="card bg-base-200 p-8 text-center"> | ||
<h3 class="text-2xl font-bold">Traditional BaaS</h3> | ||
<p class="pb-8 opacity-60"> | ||
The developer is responsible for the whole app: frontend, compute, and | ||
database | ||
</p> | ||
<Image | ||
class="mx-auto max-w-[273px]" | ||
src={architectureTraditionalImage} | ||
alt="Architecture diagram of a traditional Backend-as-a-service where the developer manages the database, compute, and frontend" | ||
/> | ||
</div> | ||
<div class="card bg-base-200 p-8 text-center"> | ||
<h3 class="text-2xl font-bold">Bazaar</h3> | ||
<p class="pb-8 opacity-60"> | ||
The developer is only responsible for the frontend. Users have their own | ||
compute and database | ||
</p> | ||
<Image | ||
class="mx-auto max-w-[424px]" | ||
src={architectureBazaarImage} | ||
alt="Architecture diagram of the Bazaar Backend-as-a-service where the developer manages the frontend, and users get their own database and compute" | ||
/> | ||
</div> | ||
</div> | ||
<p class="prose mx-auto pt-12 text-center"> | ||
With Bazaar, developers can create freely, without having to worry about | ||
running costs. That's because users pay for the resources they need, | ||
starting with a free plan, including compute and database resources, and can | ||
upgrade for larger capacity as needed. | ||
</p> | ||
</div> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters