Skip to content

Commit e8a41bc

Browse files
committed
Ship it
1 parent 17ec640 commit e8a41bc

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

src/Chat.js

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Code, Github, XCircle, Database, MinimizeIcon, Send, Upload, Trash2 } from "lucide-react";
1+
import { Code, Github, XCircle, Database, MinimizeIcon, Send, Upload, Trash2, Linkedin } from "lucide-react";
22
import React, { useEffect, useRef, useState } from "react";
33
import { IFRAME_TEMPLATE, LLM_HTML_MODEL_CONFIG, LLM_VISION_MODEL_CONFIG } from "./constants/chat.js";
44
import { useLLMHtmlGeneration } from "./hooks/useLLMHtmlGeneration.js";
@@ -134,6 +134,21 @@ export function Chat() {
134134
h(
135135
"div",
136136
{ className: "fixed top-4 right-4 z-20 flex items-center gap-2" },
137+
h(
138+
"a",
139+
{
140+
href: "https://linkedin.com/in/pauldufour",
141+
target: "_blank",
142+
rel: "noopener noreferrer",
143+
className: "bg-gray-900/80 backdrop-blur-sm rounded-full px-4 py-2 text-gray-300 hover:text-white hover:bg-gray-800 transition-colors flex items-center gap-2",
144+
},
145+
h(
146+
"div",
147+
{ className: "bg-white rounded-full p-1" },
148+
h(Linkedin, { className: "w-4 h-4 text-[#0A66C2]" })
149+
),
150+
"Paul Dufour"
151+
),
137152
h(
138153
"a",
139154
{

0 commit comments

Comments
 (0)