Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/5dec #226

Merged
merged 46 commits into from
Dec 5, 2023
Merged
Changes from 1 commit
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
809c4e9
docs: general design system document
manyaagarwal Oct 17, 2023
4a860b9
docs: ui kit components quickstart overview page
manyaagarwal Oct 18, 2023
da86da2
feat: add socket io client docs
palashgo Nov 4, 2023
dbe25b9
fix: link
palashgo Nov 4, 2023
2e25b4f
chore: revise quickstart page
saksham-gt Nov 7, 2023
f488a80
Merge pull request #380 from dyte-in/feat/socket-io-docs
palashgo Nov 7, 2023
ab44436
fix: updated self user events page
saksham-gt Nov 10, 2023
af68724
chore: added stage management page
saksham-gt Nov 10, 2023
0a848bd
chore: emit recording error in payload
saksham-gt Nov 10, 2023
12ac015
chore: added waiting room listener page
saksham-gt Nov 10, 2023
71e7dc6
doc: removed stage controls from livestream section
saksham-gt Nov 10, 2023
e8ba050
doc: rename DyteMeetingParticipant -> DyteJoined/ScreenshreParticipant
saksham-gt Nov 10, 2023
e726bac
doc: change format of other callback details of participant listener
saksham-gt Nov 10, 2023
641f3e3
chore: bumped android-ui-kit-version
rohitkhirid Nov 20, 2023
d45b5d0
Merge pull request #383 from dyte-in/android-ui-kit-version-bump
vaibhavshn Nov 20, 2023
be6579b
docs: update concepts doc
manyaagarwal Nov 20, 2023
1121015
fix: move build-ui to capabilities
manyaagarwal Nov 20, 2023
aec4e82
fix: links to documentation
manyaagarwal Nov 20, 2023
94b9a60
fix: update participant object types
thisisamank Nov 24, 2023
2f3a803
fix: host controls methods for participant object
thisisamank Nov 24, 2023
1bfc917
chore: revise quickstart page
saksham-gt Nov 7, 2023
afd331e
fix: updated self user events page
saksham-gt Nov 10, 2023
7dcb0ca
chore: added stage management page
saksham-gt Nov 10, 2023
9336b6e
chore: emit recording error in payload
saksham-gt Nov 10, 2023
bb44643
chore: added waiting room listener page
saksham-gt Nov 10, 2023
4a80c7e
doc: removed stage controls from livestream section
saksham-gt Nov 10, 2023
2df77b4
doc: rename DyteMeetingParticipant -> DyteJoined/ScreenshreParticipant
saksham-gt Nov 10, 2023
1826178
doc: change format of other callback details of participant listener
saksham-gt Nov 10, 2023
9cf6916
Merge branch 'flutter/term-rename' of https://github.com/dyte-in/docs…
thisisamank Nov 24, 2023
f254767
chore: updated versions for ios core and uikit
shaunak-jagtap Nov 25, 2023
dec88b6
Merge pull request #385 from dyte-in/ios-versions-update
palashgo Nov 26, 2023
4d260d4
Merge pull request #381 from dyte-in/flutter/term-rename
palashgo Nov 27, 2023
78c6ef5
fix: broken links
palashgo Nov 28, 2023
f9d305e
Merge branch 'main' into docs/ui
palashgo Nov 28, 2023
1701c7d
Merge pull request #375 from dyte-in/docs/ui
palashgo Nov 28, 2023
5a3d5c9
Merge branch 'main' into docs/intro
palashgo Nov 28, 2023
fc0b80c
feat: port new structure to other guides, fix broken links
palashgo Nov 28, 2023
d31cf85
Merge pull request #384 from dyte-in/docs/intro
palashgo Nov 28, 2023
43d603f
feat: refactor capabilities, add audio transcription docs
palashgo Nov 28, 2023
c55fb1e
fix: broken links
palashgo Nov 28, 2023
009f9c4
fix: reorder sidebar
palashgo Nov 28, 2023
1a92481
Merge pull request #386 from dyte-in/fix/concepts
palashgo Nov 28, 2023
1752f24
docs: added docs for selfPreview api on android-core
rohitkhirid Nov 29, 2023
318b29d
Merge pull request #387 from dyte-in/mob-151-android-core-selfpreview
palashgo Dec 2, 2023
5aa54d3
feat: add twilio migration banner
palashgo Dec 5, 2023
dd6c33d
Merge branch 'release-5dec' into release/5dec
palashgo Dec 5, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: add twilio migration banner
  • Loading branch information
palashgo committed Dec 5, 2023
commit 5aa54d3ffc78c2243be879c364b4e54ef527153c
12 changes: 12 additions & 0 deletions src/pages/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import HelpSection from '../components/homepage/HelpSection';
import Head from '@docusaurus/Head';
import GuidesAndSamples from '../components/homepage/GuidesAndSamples';
import SDKs from '../components/homepage/SDKs';
import Link from '@docusaurus/Link';

export default function Homepage() {
return (
Expand All @@ -21,6 +22,17 @@ export default function Homepage() {
<Head>
<link rel="prefetch" href="/assets/css/elements.min.css" />
</Head>
<div>
<div className="m-0 w-full bg-orange-500 p-4 text-center font-bold">
Looking to migrate from Twilio Video
<Link
to="/guides/migration/twilio/concepts-twilio-vs-dyte"
className={'ml-2 text-white underline dark:text-black'}
>
Read our migration guide
</Link>
</div>
</div>

<HeroSection />

Expand Down