PHP Classes

File: frontend/src/components/Tabs/AllTabs/FirstTab/index.tsx

Recommend this page to a friend!
  Classes of carlos carvalho   yrprey PHP application   frontend/src/components/Tabs/AllTabs/FirstTab/index.tsx   Download  
File: frontend/src/components/Tabs/AllTabs/FirstTab/index.tsx
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: yrprey PHP application
Web app to learn about OWASP API vulnerabilities
Author: By
Last change:
Date: 3 months ago
Size: 1,298 bytes
 

Contents

Class file image Download
import React from "react"; import { StyledFirstTab } from "./style"; import { BsCheck2Circle } from "react-icons/bs"; import Link from "next/link"; const FirstTab = () => { return ( <StyledFirstTab> <p> At YTPREY, we have a dedicated team of cybersecurity experts, each with extensive experience in different areas of the field. Our founding members have decades of combined experience in pentesting, vulnerability research, incident response, and security consulting for a variety of industries, including government, finance, healthcare, and technology... <Link href="/about" className="link"> View more </Link> </p> <div className="topic"> <div> <p> <BsCheck2Circle className="icon" /> ?Trusted Partner </p> <p> <BsCheck2Circle className="icon" /> ?Product Security </p> </div> <div> <p> <BsCheck2Circle className="icon" /> ?System Security </p> <p> <BsCheck2Circle className="icon" /> ?Opertional Security </p> </div> </div> </StyledFirstTab> ); }; export default FirstTab;