feat(empty-chat): add article widget

This commit is contained in:
ItzCrazyKns
2025-05-30 08:36:40 +05:30
parent ccb72c8970
commit 2257e1df0c
2 changed files with 75 additions and 0 deletions

View File

@ -4,6 +4,7 @@ import { useEffect, useState } from 'react';
import { File } from './ChatWindow';
import Link from 'next/link';
import WeatherWidget from './WeatherWidget';
import NewsArticleWidget from './NewsArticleWidget';
const EmptyChat = ({
sendMessage,
@ -52,6 +53,9 @@ const EmptyChat = ({
<div className="flex-1 max-w-xs">
<WeatherWidget />
</div>
<div className="flex-1 max-w-xs">
<NewsArticleWidget />
</div>
</div>
</div>
</div>