PHP 8.2.30
Preview: Team4.jsx Size: 3.12 KB
/proc/thread-self/root/home/byroehnu/easetack.com/resources/js/Frontend/Components/Team/Team4.jsx

import NavigationLink from "@/Components/NavigationLink"
import { Icon } from "@iconify/react"
import Button from "../Button"

export default function Team4({ data }) {
    const { section_title, section_subtitle, team_list } = data
    return (
        <>
            <div className="container">
                <div className="cs_section_heading cs_style_1 text-center">
                    {section_subtitle && (
                        <p
                            className="cs_section_subtitle cs_fs_18 cs_medium"
                            dangerouslySetInnerHTML={{
                                __html: section_subtitle
                            }}
                        />
                    )}
                    {section_title && (
                        <h2
                            className="cs_section_title cs_fs_53 cs_normal mb-0 cs_normal"
                            dangerouslySetInnerHTML={{
                                __html: section_title
                            }}
                        />
                    )}
                </div>
                {(section_subtitle || section_title) && <div className="cs_height_85 cs_height_lg_50" />}
            </div>
            <div className="container">
                <div className="row cs_gap_y_80">
                    {team_list?.map((item, index) => (
                        <div className="col-xl-3 col-sm-6" key={index}>
                            <div className="cs_team cs_style_2">
                                {item.team_image_url && (
                                    <img className="cs_team_member_thumb" src={item.team_image_url} alt={item.team_member_name} />
                                )}
                                <div className="cs_team_info">
                                    <div className="cs_team_info_in">
                                        <p className="cs_team_member_designation">{item.team_member_designation}</p>
                                        <h2 className="cs_team_member_name cs_fs_24 cs_normal">
                                            <NavigationLink href={item.team_member_action_url}>{item.team_member_name}</NavigationLink>
                                        </h2>
                                        <div className="cs_team_member_social cs_ternary_color">
                                            {item?.social_btns?.map((socialItem, socialIndex) => (
                                                <NavigationLink href={socialItem.social_action_url} key={socialIndex}>
                                                    <i>
                                                        <Icon icon={socialItem.social_icon_class} width="16" height="16" />
                                                    </i>
                                                </NavigationLink>
                                            ))}
                                        </div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    ))}
                </div>
            </div>
        </>
    )
}

Directory Contents

Dirs: 0 × Files: 4

Name Size Perms Modified Actions
4.00 KB lrw-rw-rw- 2025-04-08 04:12:57
Edit Download
4.43 KB lrw-rw-rw- 2025-04-08 04:12:57
Edit Download
6.59 KB lrw-rw-rw- 2025-04-08 04:12:57
Edit Download
3.12 KB lrw-rw-rw- 2025-04-08 04:12:57
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).