feat: about page

This commit is contained in:
Face 2025-06-11 14:19:01 +03:00
parent 0e61ab1903
commit de3f8a4929
3 changed files with 181 additions and 3 deletions

View file

@ -29,7 +29,8 @@
Scale,
ShieldCheck,
Hammer,
BookOpen
BookOpen,
Info
} from 'lucide-svelte';
import { mode, setMode } from 'mode-watcher';
import type { HTMLAttributes } from 'svelte/elements';
@ -55,7 +56,8 @@
{ title: 'Leaderboard', url: '/leaderboard', icon: Trophy },
{ title: 'Portfolio', url: '/portfolio', icon: BriefcaseBusiness },
{ title: 'Treemap', url: '/treemap', icon: ChartColumn },
{ title: 'Create coin', url: '/coin/create', icon: Coins }
{ title: 'Create coin', url: '/coin/create', icon: Coins },
{ title: 'About', url: '/about', icon: Info }
]
};
type MenuButtonProps = HTMLAttributes<HTMLAnchorElement | HTMLButtonElement>;