mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-27 23:25:51 +00:00
Add tutorials landing & components
This commit is contained in:
38
content/@theme/components/XRPLCard.tsx
Normal file
38
content/@theme/components/XRPLCard.tsx
Normal file
@@ -0,0 +1,38 @@
|
||||
import * as React from 'react';
|
||||
import dynamicReact from '@markdoc/markdoc/dist/react';
|
||||
|
||||
|
||||
export interface XRPLCardProps {
|
||||
title: string,
|
||||
href: string,
|
||||
body?: string,
|
||||
image?: string,
|
||||
imageAlt?: string,
|
||||
external: boolean,
|
||||
}
|
||||
|
||||
export function XRPLCard(props: XRPLCardProps) {
|
||||
return (
|
||||
<a className="card float-up-on-hover" href={props.href} >
|
||||
<div className="card-body">
|
||||
{ props.image && (
|
||||
<div className="card-icon-container">
|
||||
<img src={props.image} alt={props.imageAlt} />
|
||||
</div>
|
||||
)}
|
||||
<h4 className="card-title h5">{props.title}</h4>
|
||||
{ props.body && (
|
||||
<p className="card-text">{props.body}</p>
|
||||
)}
|
||||
</div>
|
||||
<div className="card-footer"> </div>
|
||||
</a>
|
||||
)
|
||||
}
|
||||
|
||||
export function CardGrid(props) {
|
||||
const gridClass = `card-grid card-grid-${props.layout}`
|
||||
return (
|
||||
<div id={props.id} className={gridClass}>{dynamicReact(props.children, React, {})}</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user