-
-
- +
-
-
-
- This is an{' '}
-
- open source
- {' '}
- chatbot template built with Next.js and the AI SDK by Vercel. It uses
- the{' '}
- streamText
{' '}
- function in the server and the{' '}
- useChat
hook
- on the client to create a seamless chat experience.
-
-
- You can learn more about the AI SDK by visiting the{' '}
-
- docs
-
- .
-
+
+ {/* Left Section: Image */}
+
+
+
+
+ {/* Right Section: Text */}
+
+
Welcome to Lemme
+
+ I'm your AI assistant at HumanGood, here to help you navigate
+ our organization. Need info on company policies, IT support, HR
+ guidelines, or departmental procedures?
+
+
+ Just ask! I'll provide quick, accurate answers from our
+ employee handbook and internal processes.
+
+
+ While I can't access personal data like paystubs, I'm here
+ to make your workday easier with instant HumanGood knowledge.
+
+
How can I assist you today?
+
);
diff --git a/components/sidebar-history.tsx b/components/sidebar-history.tsx
index 6aa18c03f..ea8e8d08f 100644
--- a/components/sidebar-history.tsx
+++ b/components/sidebar-history.tsx
@@ -109,7 +109,7 @@ const PureChatItem = ({
>
- Private
+ Personal
{visibilityType === 'private' ? (
@@ -123,7 +123,7 @@ const PureChatItem = ({
>
- Public
+ Shared
{visibilityType === 'public' ?
: null}
@@ -275,7 +275,7 @@ export function SidebarHistory({ user }: { user: User | undefined }) {
lastWeek: [],
lastMonth: [],
older: [],
- } as GroupedChats,
+ } as GroupedChats
);
};
diff --git a/components/suggested-actions.tsx b/components/suggested-actions.tsx
index b2d14d63d..e0cda313f 100644
--- a/components/suggested-actions.tsx
+++ b/components/suggested-actions.tsx
@@ -9,31 +9,31 @@ interface SuggestedActionsProps {
chatId: string;
append: (
message: Message | CreateMessage,
- chatRequestOptions?: ChatRequestOptions,
+ chatRequestOptions?: ChatRequestOptions
) => Promise
;
}
function PureSuggestedActions({ chatId, append }: SuggestedActionsProps) {
const suggestedActions = [
{
- title: 'What are the advantages',
- label: 'of using Next.js?',
- action: 'What are the advantages of using Next.js?',
+ title: 'Help me write an essay',
+ label: `about software engineering`,
+ action: `Help me write an essay about software engineering`,
},
{
- title: 'Write code to',
- label: `demonstrate djikstra's algorithm`,
- action: `Write code to demonstrate djikstra's algorithm`,
+ title: 'Write some code',
+ label: 'to generate random values and chart them',
+ action: 'Generate random values and chart them using code',
},
{
- title: 'Help me write an essay',
- label: `about silicon valley`,
- action: `Help me write an essay about silicon valley`,
+ title: 'Teach me how to',
+ label: "solve a Rubik's Cube",
+ action: "Provide a step-by-step guide on how to solve a Rubik's Cube",
},
{
- title: 'What is the weather',
- label: 'in San Francisco?',
- action: 'What is the weather in San Francisco?',
+ title: 'Recommend a recipe',
+ label: 'for dinner tonight',
+ action: 'Suggest an easy and delicious recipe for dinner tonight',
},
];
diff --git a/components/visibility-selector.tsx b/components/visibility-selector.tsx
index 7fd405906..24336dbb6 100644
--- a/components/visibility-selector.tsx
+++ b/components/visibility-selector.tsx
@@ -28,13 +28,13 @@ const visibilities: Array<{
}> = [
{
id: 'private',
- label: 'Private',
+ label: 'Personal',
description: 'Only you can access this chat',
icon: ,
},
{
id: 'public',
- label: 'Public',
+ label: 'Shared',
description: 'Anyone with the link can access this chat',
icon: ,
},
diff --git a/public/images/hg-logo.png b/public/images/hg-logo.png
new file mode 100644
index 000000000..09a469a1d
Binary files /dev/null and b/public/images/hg-logo.png differ
diff --git a/public/images/lemme.png b/public/images/lemme.png
new file mode 100644
index 000000000..6280a703b
Binary files /dev/null and b/public/images/lemme.png differ