Skip to content

Commit 947b280

Browse files
authored
Merge pull request #119 from dyte-in/fix/content-fixes
fix: content, broken links
2 parents 4edd58b + 54e3e8b commit 947b280

File tree

5 files changed

+9
-110
lines changed

5 files changed

+9
-110
lines changed

docusaurus.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ const config = {
241241
},
242242
{
243243
label: 'Support',
244-
to: '#',
244+
to: 'https://dyte.io/contact',
245245
},
246246

247247
{

src/components/homepage/CommunitySection.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export default function CommunitySection() {
5757
</Link>
5858
<Link
5959
className="flex w-full items-center justify-center gap-2 rounded-sm border border-solid border-primary-100 bg-primary-100/10 px-2 py-2 text-primary-100 lg:w-auto"
60-
href="#"
60+
href="https://www.linkedin.com/company/dyteio"
6161
>
6262
<LinkedInLogoIcon /> LinkedIn &rarr;
6363
</Link>

src/components/homepage/SDKsSection.jsx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -290,9 +290,10 @@ export default function SDKsSection() {
290290
<div className="flex flex-1 flex-col justify-center p-6 text-center lg:pl-16 lg:text-left">
291291
<h3 className="text-3xl">Plugin SDK</h3>
292292
<p className="text-sm leading-relaxed text-text-400 lg:max-w-sm">
293-
Interested to build using JavaScript, React, Angular, or Vue, this
294-
section covers everything you need to know for creating live video
295-
and voice solutions for web applications.
293+
Add the most immersive, collaborative, and more human interaction
294+
right in your video and voice calls using Dyte&apos;s
295+
out-of-the-box plugins. Dive into the resources here to get
296+
started with building your own plugins for your applications.
296297
</p>
297298
<Link className="text-sm" href="/plugin-sdk">
298299
Learn More &rarr;

src/faq.jsx

Lines changed: 2 additions & 104 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ const FAQs = [
114114
tags: ['General'],
115115
},
116116
{
117-
question: 'What are Code SDKs used for?',
117+
question: 'What are Core SDKs used for?',
118118
answer: (
119119
<>
120120
The core SDKs are required to begin integrating Dyte into your web and
@@ -267,35 +267,6 @@ const FAQs = [
267267
),
268268
tags: ['Technical'],
269269
},
270-
{
271-
question: 'What is the size of different SDKs?',
272-
answer: (
273-
<>
274-
<p>
275-
The size of different SDKs are as following:
276-
<ul>
277-
<li>
278-
iOS
279-
<ul>
280-
<li>React Native (1 mb)</li>
281-
<li>Flutter (2 mb)</li>
282-
<li>Swift (0.5 mb)</li>
283-
</ul>
284-
</li>
285-
<li>
286-
Android
287-
<ul>
288-
<li>React Native (1 mb)</li>
289-
<li>Flutter (2 mb)</li>
290-
<li>Swift (0.5 mb)</li>
291-
</ul>
292-
</li>
293-
</ul>
294-
</p>
295-
</>
296-
),
297-
tags: ['Technical'],
298-
},
299270
{
300271
question: 'What is the difference between a meeting and a session? ',
301272
answer:
@@ -381,7 +352,7 @@ const FAQs = [
381352
<ul>
382353
<li>Web: React JS, Angular, Vue, Javascript</li>
383354
<li>Mobile: Flutter, Kotlin, Swift, React Native</li>
384-
<li>Desktop: Flutter</li>
355+
<li>Desktop: Electron</li>
385356
</ul>
386357
</>
387358
),
@@ -463,79 +434,6 @@ const FAQs = [
463434
),
464435
tags: ['Technical'],
465436
},
466-
{
467-
question: 'How does pricing work for Dyte?',
468-
answer: (
469-
<>
470-
<p>
471-
Dyte provides 10,000 minutes free every month. After that we charge as
472-
the following:
473-
</p>
474-
<table>
475-
<thead>
476-
<tr>
477-
<th></th>
478-
<th>
479-
<b>Video Conferencing</b>
480-
</th>
481-
<th>
482-
<b>Audio Conferencing</b>
483-
</th>
484-
</tr>
485-
</thead>
486-
<tbody>
487-
<tr>
488-
<td>
489-
<b>Usage Minutes</b>
490-
</td>
491-
<td>$0.004/user min</td>
492-
<td>$0.001/user min</td>
493-
</tr>
494-
<tr>
495-
<td>
496-
<b>Cloud Recording</b>
497-
</td>
498-
<td>$0.010/min</td>
499-
<td>$0.010/min</td>
500-
</tr>
501-
<tr>
502-
<td>
503-
<b>Streaming to other platforms (RTMP out)</b>
504-
</td>
505-
<td>$0.015/min</td>
506-
<td>$0.010/min</td>
507-
</tr>
508-
<tr>
509-
<td>
510-
<b>Streaming (HLS) Viewers</b>
511-
</td>
512-
<td>
513-
$0.0016/ min (viewers) <br />
514-
$0.004/ min (host)
515-
</td>
516-
<td>
517-
$0.0016/ min (viewers) <br />
518-
$0.004/ min (host)
519-
</td>
520-
</tr>
521-
<tr>
522-
<td>
523-
<b>Encoding</b>
524-
</td>
525-
<td>$0.15/min</td>
526-
<td>$0.15/min</td>
527-
</tr>
528-
</tbody>
529-
</table>
530-
531-
<p>
532-
Please <Link href="https://dyte.io/contact">contact us</Link> for
533-
volume discounts.
534-
</p>
535-
</>
536-
),
537-
tags: ['Pricing'],
538-
},
539437
{
540438
question: 'How do I make a payment?',
541439
answer: (

src/pages/faq.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ export default function FAQPage() {
131131
<div className="relative flex w-full max-w-md items-center text-zinc-700">
132132
<MagnifyingGlassIcon className="z-10 h-5 w-5 translate-x-1.5" />
133133
<input
134-
type="search"
134+
type="text"
135135
className="-ml-5 h-10 flex-1 rounded-md border-none bg-white px-3 pl-8 text-sm text-zinc-700"
136136
placeholder="Search your query...(sdk, api, write code)"
137137
value={query}

0 commit comments

Comments
 (0)