Files
xrpl-dev-portal/shared/components/developer-resources-section.tsx
akcodez a08b24ed5d Enhance CardImage showcase with image scaling demo and responsive layout adjustments
- Added a new image scaling demonstration to the CardImage showcase, illustrating a zoom effect on hover.
- Updated layout of CardImage components to improve responsiveness, adjusting column spans for various screen sizes.
- Introduced a new image from Figma for the scaling demo and included detailed descriptions of the scaling behavior.
- Refined SCSS styles to support the new layout and ensure consistent spacing across different screen sizes.
2025-12-10 10:35:14 -08:00

59 lines
1.9 KiB
TypeScript

import React from "react";
import clsx from "clsx";
import { useThemeHooks } from "@redocly/theme/core/hooks";
import { Link } from "@redocly/theme/components/Link/Link";
export interface DeveloperResourcesCard {
title: string;
description: string | React.ReactNode;
links: Array<{
text: string;
url: string;
target?: "_blank" | "_self";
}>;
backgroundClass?: string;
}
export interface DeveloperResourcesSectionProps {
cards: DeveloperResourcesCard[];
className?: string;
}
export const DeveloperResourcesSection: React.FC<DeveloperResourcesSectionProps> = ({
cards,
className = ""
}) => {
const { useTranslate } = useThemeHooks();
const { translate } = useTranslate();
const isSingleCard = cards.length === 1;
return (
<div className={clsx("container", "developer-resources-section", "page-community", className, { "single-card": isSingleCard })}>
<section className="bottom-cards-section bug-bounty section-padding">
{cards.map((card, index) => (
<div key={index} className={clsx("com-card", card.backgroundClass)}>
<div className="card-content custom-gap">
<h6 className="card-title">{translate(card.title)}</h6>
<p className="card-description">
{typeof card.description === 'string' ? translate(card.description) : card.description}
</p>
<div className="card-links">
{card.links.map((link, linkIndex) => (
<Link
key={linkIndex}
className={clsx("com-card-link", { "mt-16": linkIndex === 0 })}
target={link.target || "_blank"}
to={link.url}
>
{translate(link.text)}
</Link>
))}
</div>
</div>
</div>
))}
</section>
</div>
);
};