Skip to content

Commit

Permalink
crop images
Browse files Browse the repository at this point in the history
  • Loading branch information
ybirader committed Sep 21, 2023
1 parent 71d7994 commit d32dff9
Show file tree
Hide file tree
Showing 15 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions docs/case-study.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ import HeaderLine from '@site/src/components/HeaderLine.tsx';

Symphony is an open source framework designed to make it easy for developers to build collaborative web applications. Symphony handles the complexities of implementing collaboration, including conflict resolution and real-time infrastructure, freeing developers to focus on creating unique and engaging features for their applications.

![Symphony Collaboration](/img/gifs/symphony.gif)
<video loop="true" autoplay="true" playsinline="true" muted="true" class="max-w-full">
<source src="/img/symphony.mp4" type="video/mp4"></source>
</video>

In this case study, we’ll discuss the challenges that arise when building collaborative experiences on the web, the limitations of traditional approaches in solving these problems, and how we designed Symphony to overcome them.

Expand Down Expand Up @@ -89,14 +91,13 @@ We can concretely demonstrate how conflict arises using the following examples.

Suppose that two users, Alice and Bob, are using a collaborative whiteboard. Bob changes a square shape to a circle whilst at the same time, Alice changes the square to a triangle.

<video loop autoplay="true" playsinline class="max-w-full">
<video loop="true" autoplay="true" playsinline="true" muted="true" class="max-w-full">
<source src="/img/case-study/whiteboard-conflict.mp4" type="video/mp4"></source>
</video>


Or suppose that Alice and Bob are collaborating on a text document. Suddenly, Bob disconnects but Alice continued editing, overwriting earlier content. When Bob reconnects, the two states have diverged.

<video loop autoplay="true" class="max-w-full">
<video loop="true" autoplay="true" playsinline="true" muted="true" class="max-w-full">
<source src="/img/case-study/text-editor-conflict.mp4" type="video/mp4"></source>
</video>

Expand Down
2 changes: 1 addition & 1 deletion src/components/Screenshot.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export default function Screenshot() {
return (
<div className="relative flex items-center justify-center px-4 sm:px-6">
<div className="border-1 z-10 flex justify-center rounded-2xl border-[0.5px] border-solid border-stone-200/60 bg-white/20 p-2 shadow backdrop-blur-md dark:shadow-lg dark:shadow-stone-400/30 sm:rounded-[32px] sm:p-5 md:rounded-[44px] md:p-7">
<video autoPlay loop className="z-20 w-full max-w-[1200px]">
<video autoPlay={true} loop={true} muted={true} playsInline={true} className="z-20 w-full max-w-[1200px]">
<source src='/img/hey.mp4' type='video/mp4'></source>
</video>
</div>
Expand Down
Binary file modified static/img/case-study/architecture-overview.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/img/case-study/comparing-solutions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/img/case-study/conflict-comparison.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/img/case-study/feedback-loop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/img/case-study/load-testing.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/img/case-study/manual.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/img/case-study/ot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/img/case-study/three-tier.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed static/img/gifs/symphony.gif
Binary file not shown.
Binary file added static/img/symphony.mp4
Binary file not shown.
Binary file removed static/img/team/ethan.png
Binary file not shown.
Binary file removed static/img/team/jason.png
Binary file not shown.
Binary file removed static/img/team/ryan.png
Binary file not shown.

0 comments on commit d32dff9

Please sign in to comment.