Skip to content

Commit

Permalink
Update alt text in Chat.jsx and modify description in layout.js
Browse files Browse the repository at this point in the history
  • Loading branch information
devashish2024 committed Apr 11, 2024
1 parent 0c9230a commit c6980a6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions src/app/components/Chat.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,14 @@ export const Chat = () => {
) : (
<Image
src={gpt}
alt="FreeGPT"
alt="ChatGPT"
width={25}
className="rounded-full p-1 text-white bg-[#19c37d] inline-flex"
height={25}
/>
)}
<div className="px-2 font-semibold inline-flex text-[#0d0d0d] dark:text-gray-200">
{msg.isUser ? "You" : "FreeGPT"}
{msg.isUser ? "You" : "ChatGPT"}
</div>
<div className="flex px-[34px]">
{msg.isUser ? (
Expand Down
Binary file added src/app/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion src/app/layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const inter = Inter({ subsets: ["latin"] });

export const metadata = {
title: "FreeGPT",
description: "Full-stack ChatGPT Clone. Powered by FreeGPT.js and Next.js. Built by Ashish Agarwal.",
description: "Full-stack ChatGPT UI Clone. Powered by FreeGPT.js and Next.js.",
};

export default function RootLayout({ children }) {
Expand Down

0 comments on commit c6980a6

Please sign in to comment.