1
1
mirror of https://github.com/neosubhamoy/neodlp.git synced 2026-06-10 06:33:43 +05:30

chore: bumped up deps

This commit is contained in:
2026-05-07 22:48:09 +05:30
Verified
parent 1ad9c9797b
commit cb39d591e1
8 changed files with 969 additions and 1244 deletions
+5 -3
View File
@@ -2,7 +2,9 @@ import { useLocation } from "react-router-dom";
import { isActive } from "@/utils";
import { config } from "@/config";
import { useSettingsPageStatesStore } from "@/services/store";
import { Github, Globe, Heart } from "lucide-react";
import { Globe, Heart } from "lucide-react";
import { HugeiconsIcon } from "@hugeicons/react";
import { GithubIcon } from "@hugeicons/core-free-icons";
import { IndianFlagLogo } from "@/components/icons/india";
export default function Footer() {
@@ -20,10 +22,10 @@ export default function Footer() {
</div>
<div className="flex items-center gap-2">
<a href={config.appHomepage} target="_blank" className="text-sm text-muted-foreground hover:text-foreground" title="Homepage">
<Globe className="w-4 h-4" />
<Globe className="size-4" />
</a>
<a href={'https://github.com/' + config.appRepo} target="_blank" className="text-sm text-muted-foreground hover:text-foreground" title="GitHub">
<Github className="w-4 h-4" />
<HugeiconsIcon icon={GithubIcon} className="size-4" />
</a>
</div>
</div>
@@ -7,7 +7,9 @@ import { Switch } from "@/components/ui/switch";
import { Label } from "@/components/ui/label";
import { Button } from "@/components/ui/button";
import { toast } from "sonner";
import { BadgeCheck, BellRing, BrushCleaning, Bug, CircleCheck, Cookie, ExternalLink, FilePen, FileVideo, Folder, FolderOpen, Github, Globe, Heart, Info, KeyRound, Loader2, LucideIcon, Mail, Monitor, Moon, Package, Scale, ShieldMinus, SquareTerminal, Sun, Terminal, Timer, Trash, TriangleAlert, WandSparkles, Wifi, Wrench } from "lucide-react";
import { BadgeCheck, BellRing, BrushCleaning, Bug, CircleCheck, Cookie, ExternalLink, FilePen, FileVideo, Folder, FolderOpen, Globe, Heart, Info, KeyRound, Loader2, LucideIcon, Mail, Monitor, Moon, Package, Scale, ShieldMinus, SquareTerminal, Sun, Terminal, Timer, Trash, TriangleAlert, WandSparkles, Wifi, Wrench } from "lucide-react";
import { HugeiconsIcon } from "@hugeicons/react";
import { GithubIcon } from "@hugeicons/core-free-icons";
import { cn } from "@/lib/utils";
import { Slider } from "@/components/ui/slider";
import { Input } from "@/components/ui/input";
@@ -1793,7 +1795,7 @@ function AppInfoSettings() {
<Globe className="size-3.5" />
</a>
<a href={'https://github.com/' + config.appRepo} target="_blank" className="text-sm text-foreground" title="GitHub">
<Github className="size-3.5" />
<HugeiconsIcon icon={GithubIcon} className="size-3.5" />
</a>
<p className="text-muted-foreground"></p>
<a href={config.appHomepage + '/privacy-policy'} target="_blank" className="text-xs hover:underline">Privacy Policy</a>
@@ -1805,7 +1807,7 @@ function AppInfoSettings() {
</div>
<div className="about-developer">
<h3 className="font-semibold">Developer</h3>
<p className="text-xs text-muted-foreground mb-3">Meet the Creator & Lead-Developer of NeoDLP</p>
<p className="text-xs text-muted-foreground mb-3">Meet the Creator of NeoDLP</p>
<Card className="p-4 space-y-4 flex items-center gap-4">
<div className="relative w-fit m-0">
<Avatar className="size-11">
+1 -1
View File
@@ -6,5 +6,5 @@ export const config = {
appSupportEmail: "support@neodlp.neosubhamoy.com",
appAuthor: "Subhamoy Biswas",
appAuthorUrl: "https://neosubhamoy.com",
appAuthorSponsorUrl: "https://buymeacoffee.com/neosubhamoy",
appAuthorSponsorUrl: "https://github.com/sponsors/neosubhamoy",
}
+2 -2
View File
@@ -26,12 +26,12 @@ const TanstackProvider = ({children}: {children: React.ReactNode}) => {
plugins={[
{
name: 'TanStack Query',
render: <ReactQueryDevtoolsPanel />,
render: <ReactQueryDevtoolsPanel theme='dark' />,
defaultOpen: true
},
{
name: 'TanStack Pacer',
render: <PacerDevtoolsPanel />,
render: <PacerDevtoolsPanel theme='dark' devtoolsOpen={false} />,
defaultOpen: false
},
]}