This commit is contained in:
Dhravya 2024-07-04 10:50:47 -05:00
commit 697eafd73d
5 changed files with 12 additions and 9 deletions

View file

@ -1,4 +1,4 @@
![og image](https://supermemory.dhr.wtf/og-image.png)
![og image](https://supermemory.ai/og-image.png)
# SuperMemory
@ -18,7 +18,7 @@ Supermemory fixes this.
## How do I use this?
Just go to [supermemory.dhr.wtf](https://supermemory.dhr.wtf) and sign in with your google account.
Just go to [supermemory.ai](https://supermemory.ai) and sign in with your google account.
To use the chrome extension,

View file

@ -34,6 +34,9 @@ bunx wrangler d1 create <YOUR_DATABASE_NAME>
And then replace database_name and database_id with the values
> [!NOTE]
> please don't change the binding value even if wrangler cli suggests you to do so.
```
[[d1_databases]]
binding = "DATABASE"

View file

@ -207,7 +207,7 @@ function ChatWindow({
</motion.div>
) : (
<div
className="max-w-3xl z-10 mx-auto relative h-full overflow-y-auto no-scrollbar"
className="max-w-3xl z-10 mx-auto relative h-full overflow-y-auto scrollbar-none"
key="chat"
>
<div className="w-full pt-24 mb-40 px-4 md:px-0">

View file

@ -33,7 +33,7 @@ function Cta() {
<p className="z-20 text-center text-md md:text-lg">
Sign up for the waitlist and be the first to try Supermemory
</p>
<div className="w-full lg:w-3/4 mx-auto">
<div className="w-fit lg:w-3/4 mx-auto">
<Link
href="/signin"
className="inline-flex gap-x-2 justify-start items-start py-3 px-5 ml-3 w-full rounded-3xl border duration-200 sm:w-auto group bg-page-gradient border-white/30 text-md font-geistSans hover:border-zinc-600 hover:bg-transparent/10 hover:text-zinc-100 text-white z-[1] relative"

View file

@ -3,16 +3,16 @@ import LinkArrow from "./linkArrow";
function Footer() {
return (
<footer className="mt-20 flex w-full overflow-y-hidden items-center justify-between gap-4 px-8 py-8 text-sm text-zinc-500 overflow-hidden">
<footer className="mt-20 w-full md:flex overflow-y-hidden items-center justify-between gap-4 px-8 py-8 text-sm text-zinc-500 overflow-hidden text-center">
<p>© 2024 Supermemory.ai</p>
<div className="flex gap-5">
<div className="flex gap-5 justify-around my-2">
<a
className="group/mail flex items-center"
target="_blank"
href="mailto:hi@dhravya.dev"
>
Contact
<LinkArrow classname="group-hover/mail:opacity-100 opacity-0 transition" />
<LinkArrow classname="group-hover/mail:opacity-100 opacity-0 transition hidden md:block" />
</a>
<a
className="group/twit flex items-center"
@ -20,7 +20,7 @@ function Footer() {
href="https://twitter.com/supermemoryai"
>
Twitter{" "}
<LinkArrow classname="group-hover/twit:opacity-100 opacity-0 transition" />
<LinkArrow classname="group-hover/twit:opacity-100 opacity-0 transition hidden md:block" />
</a>
<a
className="group/git flex items-center"
@ -28,7 +28,7 @@ function Footer() {
href="https://github.com/dhravya/supermemory"
>
Github{" "}
<LinkArrow classname="group-hover/git:opacity-100 opacity-0 transition" />
<LinkArrow classname="group-hover/git:opacity-100 opacity-0 transition hidden md:block" />
</a>
</div>
</footer>