little fix

This commit is contained in:
2024-03-21 18:32:08 +05:00
parent a2a503d5d5
commit 0d95039ac3
3 changed files with 39 additions and 3 deletions
+2 -1
View File
@@ -28,6 +28,7 @@ import YouTubeIcon from "@components/icons/YouTubeIcon";
import TelegramIcon from "@components/icons/TelegramIcon";
import { IProject } from "../types/IProject";
import Histories from "@components/Histories";
import Winners from "@components/Winners";
export default function App() {
const [selectedVideo, setSelectedVideo] = useState<string>(
@@ -639,7 +640,7 @@ export default function App() {
<img src="/images/blendings/6.svg" alt="" />
</div>
</div>
<Winners />
<div className="relative overflow-hidden pb-[50px]">
<div className="lg:mt-40 sm:mt-[120px] mt-[88px]">
<div className="grid lg:grid-cols-4 grid-cols-1 lg:gap-4 gap-6">
+2 -2
View File
@@ -1,8 +1,8 @@
import InsertArrowIcon from "../icons/InsertArrowIcon";
import InsertArrowIcon from "./icons/InsertArrowIcon";
const Winners = () => {
return (
<div className="sm:px-10 px-4 flex justify-center items-center sm:flex-row flex-col-reverse ">
<div className="sm:px-10 flex justify-center items-center sm:flex-row flex-col-reverse ">
<div className="flex justify-center items-center sm:w-1/2 xl:h-[607px] p-5">
<img src="images/award.png" alt="awards" className="h-full" />
</div>
+35
View File
@@ -0,0 +1,35 @@
const InsertArrowIcon = () => {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
width="20"
height="20"
viewBox="0 0 20 20"
fill="none"
>
<mask
id="mask0_2094_9784"
maskUnits="userSpaceOnUse"
x="0"
y="0"
width="20"
height="20"
>
<rect
width="20"
height="20"
transform="matrix(-1 0 0 1 20 0)"
fill="#D9D9D9"
/>
</mask>
<g mask="url(#mask0_2094_9784)">
<path
d="M4.97447 14.7041L13.6203 6.0663V13.7923H14.7036V4.20898H5.12032V5.29228H12.8463L4.20847 13.9381L4.97447 14.7041Z"
fill="white"
/>
</g>
</svg>
);
};
export default InsertArrowIcon;