mirror of
https://github.com/nextui-org/nextui.git
synced 2025-12-08 19:26:11 +00:00
* fix(docs): replace Twitter logo/links with X logo/links * docs: update twitter references to x * docs: update changeset for twitter to x changes * docs: update twitter references to x * docs: update twitter references to x * chore(docs): undo .sponsorsrc since it's generated * refactor(docs): remove unnecessary classes * chore(docs): undo .sponsorsrc since it's generated --------- Co-authored-by: WK Wong <wingkwong.code@gmail.com>
29 lines
937 B
TypeScript
29 lines
937 B
TypeScript
import {DiscordIcon, GithubIcon, XIcon} from "@/components/icons";
|
|
|
|
export const TWITTER_USER_NAME = "getnextui";
|
|
export const SITE_URL = "https://nextui.org";
|
|
|
|
export const communityAccounts = [
|
|
{
|
|
title: "X",
|
|
description: "For announcements, tips and general information.",
|
|
icon: <XIcon className="text-[#333] dark:text-[#E7E7E7]" size={28} />,
|
|
href: "https://x.com/getnextui",
|
|
isExternal: true,
|
|
},
|
|
{
|
|
title: "Discord",
|
|
description: "To get involved in the community, ask questions and share tips.",
|
|
icon: <DiscordIcon className="text-[#7289DA]" size={32} />,
|
|
href: "https://discord.gg/9b6yyZKmH4",
|
|
isExternal: true,
|
|
},
|
|
{
|
|
title: "Github",
|
|
description: "To report bugs, request features and contribute to the project.",
|
|
icon: <GithubIcon className="text-[#333] dark:text-[#E7E7E7]" size={32} />,
|
|
href: "https://github.com/nextui-org/nextui",
|
|
isExternal: true,
|
|
},
|
|
];
|