docs: general fixes and overall changes (#7258)

* editing halfway

* edited second half

* adjust starter steps

* fix build

* typo fix
This commit is contained in:
Shahed Nasser
2024-05-07 18:00:28 +02:00
committed by GitHub
parent 8db62827ac
commit 327e446974
57 changed files with 872 additions and 1849 deletions
@@ -13,6 +13,7 @@ export type CardProps = {
contentClassName?: string
children?: React.ReactNode
showLinkIcon?: boolean
isExternal?: boolean
}
export const Card = ({
@@ -25,6 +26,7 @@ export const Card = ({
contentClassName,
children,
showLinkIcon = true,
isExternal = false,
}: CardProps) => {
return (
<div
@@ -60,6 +62,7 @@ export const Card = ({
<Link
href={href}
className="absolute left-0 top-0 h-full w-full rounded"
target={isExternal ? "_blank" : undefined}
/>
</>
)}