芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/reginaeigbe.com/folder/admin/tmp/resources/js/Frontend/Components/About/About2.jsx
import Spacing from "@/Frontend/Components/Spacing"; import Div from "@/Frontend/Components/Div"; import SectionHeading from "@/Frontend/Components/SectionHeading"; export default function About2({about_data}){ return( <>
{about_data.description}
{about_data.photos?.slice(0, 1).map((img, index) => (
{img ? (
) : null}
))} {about_data.photos?.slice(1).map((img, index) => (
{img ? (
) : null}
))}
> ) }