planpost-offer-landing/src/components/SocialSection.tsx

27 lines
626 B
TypeScript

import Image from "next/image";
import React from "react";
const SocialSection: React.FC = () => {
return (
<section
id="feature"
className="social"
data-aos="fade-up"
data-aos-duration="1500"
>
<div className="h-0 md:h-[180px] lg:h-[250px] flex justify-center relative">
<div className="absolute -top-[200px]">
<Image
src="/assets/images/temp-example.png"
alt="Example Image"
width={1200}
height={300}
priority
/>
</div>
</div>
</section>
);
};
export default SocialSection;