mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-07 08:26:15 +00:00
added links on bottom of the page
This commit is contained in:
parent
31b0c0ce37
commit
78d658e99e
1 changed files with 33 additions and 0 deletions
|
|
@ -8,6 +8,7 @@ import { createChatThread, linkTelegramToUser } from "@/app/actions/doers";
|
|||
import { toast } from "sonner";
|
||||
import { motion } from "framer-motion";
|
||||
import { variants } from "./homeVariants";
|
||||
import { ChromeIcon, GithubIcon, TwitterIcon } from "lucide-react";
|
||||
|
||||
const slap = {
|
||||
initial: {
|
||||
|
|
@ -129,6 +130,38 @@ function Page({
|
|||
setInitialSpaces={setSpaces}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div className="w-full fixed bottom-0 left-0 p-4">
|
||||
<div className="flex items-center justify-center gap-8">
|
||||
<a
|
||||
href="https://supermemory.ai/extension"
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
className="flex items-center gap-2 text-muted-foreground"
|
||||
>
|
||||
<ChromeIcon className="w-4 h-4" />
|
||||
Install extension
|
||||
</a>
|
||||
<a
|
||||
href="https://github.com/Dhravya/supermemory/issues/new"
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
className="flex items-center gap-2 text-muted-foreground"
|
||||
>
|
||||
<GithubIcon className="w-4 h-4" />
|
||||
Bug report
|
||||
</a>
|
||||
<a
|
||||
href="https://x.com/supermemory.ai"
|
||||
target="_blank"
|
||||
rel="noreferrer"
|
||||
className="flex items-center gap-2 text-muted-foreground"
|
||||
>
|
||||
<TwitterIcon className="w-4 h-4" />
|
||||
Twitter
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue