2023-02-11 12:54:02 -05:00
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
|
|
export default function Footer() {
|
|
|
|
|
return (
|
2023-04-02 04:15:07 +08:00
|
|
|
<div className="hidden px-3 pt-2 pb-1 text-center text-xs text-black/50 dark:text-white/50 md:block md:px-4 md:pt-3 md:pb-4">
|
2023-02-11 12:54:02 -05:00
|
|
|
<a
|
2023-02-14 18:40:00 -05:00
|
|
|
href="https://github.com/danny-avila/chatgpt-clone"
|
2023-02-11 12:54:02 -05:00
|
|
|
target="_blank"
|
|
|
|
|
rel="noreferrer"
|
|
|
|
|
className="underline"
|
|
|
|
|
>
|
|
|
|
|
ChatGPT Clone
|
|
|
|
|
</a>
|
2023-04-02 04:15:07 +08:00
|
|
|
. Serves and searches all conversations reliably. All AI convos under one house. Pay per call and not
|
|
|
|
|
per month (cents compared to dollars).
|
2023-02-11 12:54:02 -05:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|