Spaces:
Running
Running
File size: 1,153 Bytes
a42fcca 019c633 a42fcca 019c633 a42fcca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
import {
Popover,
PopoverContent,
PopoverTrigger,
} from "@/components/ui/popover";
import { Info } from "lucide-react";
export const FollowUpTooltip = () => {
return (
<Popover>
<PopoverTrigger asChild>
<Info className="size-3 text-neutral-300 cursor-pointer" />
</PopoverTrigger>
<PopoverContent
align="start"
className="!rounded-2xl !p-0 min-w-xs text-center overflow-hidden"
>
<header className="bg-neutral-950 px-4 py-3 border-b border-neutral-700/70">
<p className="text-base text-neutral-200 font-semibold">
⚡ Faster, Smarter Updates
</p>
</header>
<main className="p-4">
<p className="text-neutral-300 text-sm">
Using the Diff-Patch system, allow DeepSite to intelligently update
your project without rewritting the entire codebase.
</p>
<p className="text-neutral-500 text-sm mt-2">
This means faster updates, less data usage, and a more efficient
development process.
</p>
</main>
</PopoverContent>
</Popover>
);
};
|