Change name

This commit is contained in:
Jared Palmer 2023-05-19 14:25:15 -04:00
parent 177b2cc210
commit ae9eae0018
6 changed files with 122 additions and 453 deletions

View file

@ -7,11 +7,10 @@ import { cn } from "@/lib/utils";
export const metadata: Metadata = {
title: {
default: "Vercel Chat",
template: `%s - Vercel Chat`,
default: "Next.js Chatbot",
template: `%s - Next.js Chatbot`,
},
description:
"Vercel Chat is an AI-powered chat app built with Next.js and Vercel.",
description: "An AI-powered chatbot built with Next.js and Vercel.",
themeColor: [
{ media: "(prefers-color-scheme: light)", color: "white" },
{ media: "(prefers-color-scheme: dark)", color: "black" },

View file

@ -22,7 +22,7 @@ export function Sidebar({ session, newChat }: SidebarProps) {
<div className="flex flex-row gap-1 items-center justify-between text-base font-semibold tracking-tight antialiased bg-black text-white px-4 py-4 -m-2 mb-2">
<div className="flex flex-row gap-1 whitespace-nowrap items-center">
<DevGPTLogo className="h-6 w-6" />
<span className="select-none">DevGPT</span>
<span className="select-none">Next.js Chatbot</span>
</div>
<div>
{session?.user ? <UserMenu session={session} /> : <Login />}