Spaces:
Runtime error
Runtime error
File size: 1,236 Bytes
cd6f98e |
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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
import type { IconType } from "react-icons";
import {
FaDiscord,
FaFileCode,
FaGear,
FaGithub,
FaHouse,
FaLinkedin,
FaQuestion,
FaXTwitter,
} from "react-icons/fa6";
type LinkMetadata = {
name: string;
href: string;
icon: IconType;
className?: string;
};
export const PAGE_LINKS: LinkMetadata[] = [
{
name: "Home",
href: "/",
icon: FaHouse,
},
{
name: "Help",
href: "https://docs.reworkd.ai/",
icon: FaQuestion,
className: "group-hover:text-red-500",
},
{
name: "Templates",
href: "/templates",
icon: FaFileCode,
className: "transition-transform group-hover:scale-110",
},
{
name: "Settings",
href: "/settings",
icon: FaGear,
className: "transition-transform group-hover:rotate-90",
},
];
export const SOCIAL_LINKS: LinkMetadata[] = [
{
name: "Github",
href: "https://github.com/reworkd/AgentGPT",
icon: FaGithub,
},
{
name: "Twitter",
href: "https://twitter.com/ReworkdAI",
icon: FaXTwitter,
},
{
name: "Discord",
href: "https://discord.gg/gcmNyAAFfV",
icon: FaDiscord,
},
{
name: "LinkedIn",
href: "https://www.linkedin.com/company/reworkd/",
icon: FaLinkedin,
},
];
|