Skip to content

Commit 8755140

Browse files
committed
docs: update showcase pages to include demo video embeds
1 parent 4fc2757 commit 8755140

File tree

6 files changed

+42
-15
lines changed

6 files changed

+42
-15
lines changed

docs/showcase/Ellipsis.mdx

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,18 @@ REACT_APP_API_URL=http://your-backend-host:5000
100100
* **Content Evaluation**: Built-in pipelines for factual accuracy and legal compliance
101101
* **Podcast Publishing**: Direct integration with Podbean via MCP server
102102

103+
## Demo Video
104+
105+
<iframe
106+
className="w-full aspect-video rounded-xl"
107+
src="https://www.youtube.com/embed/XUPsSuCBTFw"
108+
title="YouTube video player"
109+
frameBorder="0"
110+
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
111+
allowFullScreen
112+
></iframe>
113+
103114
## Links
104115

105116
- [GitHub Repository](https://github.com/dineshkannan010/Ellipsis)
106-
- [Demo Video](https://www.youtube.com/watch?v=XUPsSuCBTFw)
107117
- [Devpost Submission](https://devpost.com/software/ellipsis)

docs/showcase/citypulse-ai-search.mdx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,4 @@ The app uses structured JSON schemas to ensure consistent data formatting and in
5959

6060
- [GitHub Repository](https://github.com/anevsky/CityPulse)
6161
- [Live Demo](https://citypulse-ppx.uc.r.appspot.com/)
62-
- [Video Demo](https://youtu.be/Y0UIhh3diJg)
6362
- **[Built with ❤️ by Alex Nevsky](https://alexnevsky.com)**

docs/showcase/cycle-sync-ai.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Most apps overlook the hormonal changes that affect women's fitness and nutritio
3636

3737
## Repository Structure
3838

39-
```
39+
```text
4040
CycleSyncAI.xcodeproj → Xcode project file
4141
CycleSyncAI/ → Source code
4242
├── EatPlanViewController.swift → Diet plan generation & display

docs/showcase/fact-dynamics.mdx

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ flutter pub get
5050

5151
## Usage
5252

53-
**Real-time Speech Fact-Checking:**
53+
### Real-time Speech Fact-Checking
5454
- Streams 5-second audio chunks through Flutter's `speech_to_text`
5555
- Sends transcribed snippets to Sonar API with structured prompts
5656
- Returns JSON with claims, ratings (TRUE/FALSE/MISLEADING/UNVERIFIABLE), explanations, and sources
5757

58-
**Image Analysis:**
58+
### Image Analysis
5959
- Uploads images/URLs to Sonar API for text extraction
6060
- Verifies extracted claims against authoritative sources
6161
- Provides comprehensive analysis with source attribution
@@ -97,9 +97,19 @@ Built two reusable packages for the Flutter community:
9797
- **[perplexity_flutter](https://pub.dev/packages/perplexity_flutter)** - Flutter widgets and BLoC integration
9898

9999

100+
## Demo Video
101+
102+
<iframe
103+
className="w-full aspect-video rounded-xl"
104+
src="https://www.youtube.com/embed/92IoX19Djtc"
105+
title="YouTube video player"
106+
frameBorder="0"
107+
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
108+
allowFullScreen
109+
></iframe>
110+
100111
## Links
101112

102113
- **[GitHub Repository](https://github.com/vishnu32510/fact_pulse)** - Full source code
103114
- **[Live Demo](https://fact-pulse.web.app/)** - Try the web version
104-
- **[Demo Video](https://youtu.be/92IoX19Djtc)** - Watch it in action
105115
- **[Devpost Submission](https://devpost.com/software/fact-dynamics)** - Hackathon entry

docs/showcase/monday.mdx

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,20 @@ npm run dev
7272
* **Content Curation**: YouTube API integration with smart keyword extraction for educational videos
7373
* **Accessibility**: Voice-first design with spatial audio and haptic feedback support
7474

75+
## Demo Video
76+
77+
<iframe
78+
className="w-full aspect-video rounded-xl"
79+
src="https://www.youtube.com/embed/BSN3Wp4uE-U"
80+
title="YouTube video player"
81+
frameBorder="0"
82+
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
83+
allowFullScreen
84+
></iframe>
85+
7586
## Links
7687

7788
- [GitHub Repository](https://github.com/srivastavanik/monday/tree/final)
78-
- [Live Demo](https://www.youtube.com/watch?v=BSN3Wp4uE-U)
7989

8090

8191

docs/showcase/perplexity-flutter.mdx

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ const String perplexityApiKey = 'your_perplexity_api_key_here';
5050

5151
## Usage
5252

53-
**Core API Integration:**
53+
### Core API Integration
5454
- Type-safe client with all Perplexity models (Sonar, Sonar Pro, Deep Research, Reasoning)
5555
- Streaming and non-streaming chat completions
5656
- Multimodal processing with flexible MessagePart system for text + images
5757

58-
**Flutter Widget Layer:**
58+
### Flutter Widget Layer
5959
- `ChatWrapperWidget` for BLoC state management
6060
- `PerplexityChatView` for real-time message display
6161
- `PerplexityChatInput` for user interaction handling
@@ -71,19 +71,17 @@ const String perplexityApiKey = 'your_perplexity_api_key_here';
7171

7272
## Architecture
7373

74-
**Two-layer design:**
74+
### Two-layer design
7575
- **Core (`perplexity_dart`)** - Pure Dart API client for all platforms
7676
- **UI (`perplexity_flutter`)** - Flutter widgets + BLoC state management
7777

7878
Uses flexible MessagePart system for multimodal content combining text and images.
7979
## Links
8080

81-
**Packages:**
81+
### Packages
8282
- [perplexity_dart on pub.dev](https://pub.dev/packages/perplexity_dart) | [GitHub](https://github.com/vishnu32510/perplexity_dart)
8383
- [perplexity_flutter on pub.dev](https://pub.dev/packages/perplexity_flutter) | [GitHub](https://github.com/vishnu32510/perplexity_flutter)
8484

85-
**Examples:**
85+
### Examples
8686
- [Flutter Example App](https://github.com/vishnu32510/perplexity_dart/tree/main/example_flutter_app)
87-
- [Dart Examples](https://github.com/vishnu32510/perplexity_dart/tree/main/example)
88-
89-
**Contributing:** Issues and PRs welcome on both repositories.
87+
- [Dart Examples](https://github.com/vishnu32510/perplexity_dart/tree/main/example)

0 commit comments

Comments
 (0)