PHP Classes

File: frontend/src/components/Routes/Home/AboutSection/index.tsx

Recommend this page to a friend!
  Classes of carlos carvalho   yrprey PHP application   frontend/src/components/Routes/Home/AboutSection/index.tsx   Download  
File: frontend/src/components/Routes/Home/AboutSection/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: 904 bytes
 

Contents

Class file image Download
import AOS from "aos"; import { useEffect } from "react"; import Tabs from "@/components/Tabs"; import { StyledAboutSection } from "./style"; import Image from "next/image"; const AboutSection = () => { useEffect(() => { AOS.init({ duration: 2000 }); }, []); return ( <StyledAboutSection> <div className="container"> <div className="container-left" data-aos="fade-right"> <Image src={"/hacker-2.webp"} width="100" height="100" sizes="100" alt="shield"></Image> </div> <div className="container-right" data-aos="fade-left"> <p className="title">About</p> <h2> Exclusive Platform To <span> Practice And Train </span>Your Vulnerability Skills. </h2> <Tabs /> </div> </div> </StyledAboutSection> ); }; export default AboutSection;