feat(empty-chat): add article widget
This commit is contained in:
parent
ccb72c8970
commit
2257e1df0c
2 changed files with 75 additions and 0 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue