full upgrade to dev
This commit is contained in:
@@ -367,7 +367,7 @@ export default function ActivityFeed() {
|
||||
<div className="flex items-center gap-1.5 mb-1">
|
||||
<Clock size={10} className="text-gray-400" />
|
||||
<span className="text-[10px] font-bold text-gray-400 uppercase tracking-wider">
|
||||
Today's Coding
|
||||
Today's Coding
|
||||
</span>
|
||||
</div>
|
||||
<p className="font-bold text-sm text-white mb-0.5">
|
||||
@@ -525,7 +525,7 @@ export default function ActivityFeed() {
|
||||
Quote of the moment
|
||||
</p>
|
||||
<p className="text-sm text-white/90 italic font-serif leading-relaxed">
|
||||
"{quote.content}"
|
||||
"{quote.content}"
|
||||
</p>
|
||||
<p className="text-xs text-white/50 mt-2 text-right">
|
||||
— {quote.author}
|
||||
|
||||
@@ -59,7 +59,7 @@ export default function ChatWidget() {
|
||||
try {
|
||||
const parsed = JSON.parse(stored);
|
||||
setMessages(
|
||||
parsed.map((m: any) => ({
|
||||
parsed.map((m: Message) => ({
|
||||
...m,
|
||||
timestamp: new Date(m.timestamp),
|
||||
})),
|
||||
@@ -72,7 +72,7 @@ export default function ChatWidget() {
|
||||
setMessages([
|
||||
{
|
||||
id: "welcome",
|
||||
text: "Hi! I'm Dennis's AI assistant. Ask me anything about his skills, projects, or experience! 🚀",
|
||||
text: "Hi! I'm Dennis's AI assistant. Ask me anything about his skills, projects, or experience! 🚀",
|
||||
sender: "bot",
|
||||
timestamp: new Date(),
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user