diff options
| author | Bertrand Yuan <bert.yuan@outlook.com> | 2025-12-15 23:48:10 +0800 |
|---|---|---|
| committer | Bertrand Yuan <bert.yuan@outlook.com> | 2025-12-15 23:48:10 +0800 |
| commit | 5b7ccf0b671e2999b62befc729a3e517a0433728 (patch) | |
| tree | 8bf476dc7c75914c221042546840dc76267366df /src/components/inline-link.tsx | |
initial commit -- the front-end prototype
The initial code is base on Anirudh's work.
More to see at:
https://github.com/techwithanirudh/shadcn-blog
Therefore, the code in this commit is under MIT license.
Diffstat (limited to 'src/components/inline-link.tsx')
| -rw-r--r-- | src/components/inline-link.tsx | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/components/inline-link.tsx b/src/components/inline-link.tsx new file mode 100644 index 0000000..f507688 --- /dev/null +++ b/src/components/inline-link.tsx @@ -0,0 +1,28 @@ +import { cn } from '@/lib/utils'; +import Link from 'next/link'; +import type { ReactNode } from 'react'; + +export const InlineLink = ({ + href, + children, + blank = false, + className, +}: { + href: string; + children: ReactNode; + blank?: boolean; + className?: string; +}) => { + return ( + <Link + href={href} + className={cn( + 'text-fd-primary underline duration-300 hover:text-fd-primary/70', + className, + )} + target={blank ? '_blank' : undefined} + > + {children} + </Link> + ); +}; |
