diff --git a/docs/showcase/daily-news-briefing.mdx b/docs/showcase/daily-news-briefing.mdx
new file mode 100644
index 0000000..040081b
--- /dev/null
+++ b/docs/showcase/daily-news-briefing.mdx
@@ -0,0 +1,149 @@
+---
+title: Daily News Briefing
+description: Get AI-powered daily news summaries directly in your Obsidian vault
+sidebar_position: 5
+keywords: [obsidain-plugin, AI, Perplexity, news]
+---
+
+import { CheckIcon } from '@heroicons/react/24/solid'
+import { Callout } from 'nextra/components'
+
+# Daily News Briefing
+
+
+
+
+ Daily News Briefing is an Obsidian plugin that delivers AI-powered news summaries directly to your vault. Stay informed about your topics of interest with smart, automated news collection and summarization.
+
+
+
+
+
+## Features
+
+
+ -
+
+ Personalized news collection based on your topics of interest
+
+ -
+
+ AI-powered summarization of news articles
+
+ -
+
+ Automated daily news briefings directly in your Obsidian vault
+
+ -
+
+ Customizable delivery schedule and format
+
+ -
+
+ Integration with your existing Obsidian workflow
+
+
+
+## Prerequisites
+
+- Obsidian desktop app installed
+- Perplexity API key
+- Internet connection for fetching news articles
+
+## Installation
+
+1. Install the plugin from Obsidian Community Plugins or manually by copying the release files to your Obsidian plugins folder
+2. Enable the plugin in Obsidian settings
+3. Enter your Perplexity API key in the plugin settings
+4. Configure your news topics and delivery preferences
+
+## Built with Perplexity API
+
+
+ Daily News Briefing uses the Perplexity Sonar API to deliver high-quality, personalized news summaries. By leveraging Perplexity's advanced capabilities, the plugin can intelligently gather and summarize news from across the web, ensuring you stay informed on the topics that matter most to you.
+
+
+## How it works
+
+1. **Configure your interests**: Set up your preferred topics, sources, and delivery schedule in the plugin settings.
+
+2. **Automated collection**: The plugin uses Perplexity Sonar API to search for and gather the latest news articles related to your interests.
+
+3. **AI summarization**: Articles are processed and summarized using Perplexity's advanced natural language capabilities.
+
+4. **Delivery to your vault**: Summaries are formatted and delivered as Markdown notes directly into your Obsidian vault.
+
+5. **Seamless integration**: Link your news briefings with other notes in your knowledge base for a comprehensive information management system.
+
+## Code Explanation
+
+The core functionality of Daily News Briefing relies on the Perplexity Sonar API for gathering and summarizing news. Here's a key code snippet showing how we interact with the API:
+
+```typescript
+async function fetchNewsSummaries(topics: string[]): Promise {
+ const summaries: NewsSummary[] = [];
+
+ for (const topic of topics) {
+ try {
+ // Use Perplexity Sonar API to search for recent news
+ const newsQuery = `latest news about ${topic} in the past 24 hours`;
+ const searchResponse = await perplexityClient.search({
+ query: newsQuery,
+ max_results: 5,
+ include_domains: userPreferences.trustedSources || []
+ });
+
+ // Extract relevant articles
+ const articles = searchResponse.results;
+
+ // Generate a concise summary using Perplexity
+ const summaryPrompt = `Summarize these news articles about ${topic}: ${articles.map(a => a.title).join(', ')}`;
+ const summaryResponse = await perplexityClient.generate({
+ prompt: summaryPrompt,
+ model: "sonar-medium-online",
+ max_tokens: 500
+ });
+
+ summaries.push({
+ topic,
+ summary: summaryResponse.text,
+ sources: articles.map(a => ({ title: a.title, url: a.url })),
+ timestamp: new Date().toISOString()
+ });
+ } catch (error) {
+ console.error(`Error fetching news for topic ${topic}:`, error);
+ }
+ }
+
+ return summaries;
+}
+```
+
+## Technical implementation
+
+Daily News Briefing is built with TypeScript and integrates with Obsidian's plugin API. The application architecture includes:
+
+- TypeScript-based plugin structure
+- Custom CSS for styling elements
+- JavaScript utilities
+- Integration with Perplexity Sonar API for AI-powered news gathering and summarization
+
+The plugin demonstrates how Perplexity API can be leveraged to create intelligent content curation tools that integrate with existing productivity systems.
+
+## Limitations
+
+- The quality of summaries depends on the availability of recent news articles
+- API rate limits may affect the number of topics that can be monitored simultaneously
+- Internet connection is required for fetching news updates
+- Some paywalled content may not be fully accessible for summarization
+
+## Links
+
+- [GitHub Repository](https://github.com/ChenziqiAdam/Daily-News-Briefing)