From 86dc3ccee6cb3b8606c6a1aff340448e8984d6e7 Mon Sep 17 00:00:00 2001 From: Mohammad Kermani Date: Thu, 27 Mar 2025 09:37:21 +0000 Subject: [PATCH 1/2] chore: switch from Vercel to Pattern logo in overview page --- components/overview.tsx | 14 ++++++++++++-- public/images/logo-black.svg | 5 +++++ public/images/logo-white.svg | 5 +++++ 3 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 public/images/logo-black.svg create mode 100644 public/images/logo-white.svg diff --git a/components/overview.tsx b/components/overview.tsx index cc2e4a9..c325dda 100644 --- a/components/overview.tsx +++ b/components/overview.tsx @@ -1,7 +1,8 @@ import { motion } from 'framer-motion'; +import Image from 'next/image'; import Link from 'next/link'; -import { MessageIcon, VercelIcon } from './icons'; +import { MessageIcon } from './icons'; export const Overview = () => { return ( @@ -15,7 +16,16 @@ export const Overview = () => { >

- + Pattern +

diff --git a/public/images/logo-black.svg b/public/images/logo-black.svg new file mode 100644 index 0000000..e087807 --- /dev/null +++ b/public/images/logo-black.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/images/logo-white.svg b/public/images/logo-white.svg new file mode 100644 index 0000000..7c3ce37 --- /dev/null +++ b/public/images/logo-white.svg @@ -0,0 +1,5 @@ + + + + + From 4fa82b0eea27832334b59b2c4f7f3976ffd55e6f Mon Sep 17 00:00:00 2001 From: Mohammad Kermani Date: Thu, 27 Mar 2025 09:42:21 +0000 Subject: [PATCH 2/2] chore: modify overview page text --- components/overview.tsx | 29 +---------------------------- 1 file changed, 1 insertion(+), 28 deletions(-) diff --git a/components/overview.tsx b/components/overview.tsx index c325dda..1066e8b 100644 --- a/components/overview.tsx +++ b/components/overview.tsx @@ -1,6 +1,5 @@ import { motion } from 'framer-motion'; import Image from 'next/image'; -import Link from 'next/link'; import { MessageIcon } from './icons'; @@ -29,33 +28,7 @@ export const Overview = () => { +

-

- 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 - - . -

+

How can I help you?

);