--- title: Links sidebar_position: 2 sidebar_custom_props: icon: TbLink --- import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; import { SandpackEditor} from '@site/src/ui/SandpackEditor' import contactLinkCode from '!!raw-loader!@site/src/ui/navigation/link/contactLinkCode.js' import rawLinkCode from '!!raw-loader!@site/src/ui/navigation/link/rawLinkCode.js' import roundedLinkCode from '!!raw-loader!@site/src/ui/navigation/link/roundedLinkCode.js' import socialLinkCode from '!!raw-loader!@site/src/ui/navigation/link/socialLinkCode.js' ## Contact Link A stylized link component for displaying contact information.
Props Type Description
className string Optional name for additional styling
href string The target URL or path for the link
onClick function Callback function to be triggered when the link is clicked
children `React.ReactNode` The content to be displayed inside the link
## Raw Link A stylized link component for displaying links.
Props Type Description
className string Optional name for additional styling
href string The target URL or path for the link
onClick function Callback function to be triggered when the link is clicked
children `React.ReactNode` The content to be displayed inside the link
## Rounded Link A rounded-styled link with a Chip component for links.
Props Type Description
href string The target URL or path for the link
children `React.ReactNode` The content to be displayed inside the link
onClick function Callback function to be triggered when the link is clicked
## Social Link Stylized social links, with support for various social link types, such as URLs, LinkedIn, and X (or Twitter).
Props Type Description
href string The target URL or path for the link
children `React.ReactNode` The content to be displayed inside the link
type string The type of social links. Options include: `url`, `LinkedIn`, and `Twitter`
onClick function Callback function to be triggered when the link is clicked