Skip to content

Commit 93c5c2b

Browse files
authored
Merge pull request #252 from prabhakar-dessai/react
handpicked technologies section added
2 parents 86268fb + 43286f6 commit 93c5c2b

File tree

6 files changed

+58
-0
lines changed

6 files changed

+58
-0
lines changed

social-links/tailwind.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ module.exports = {
2020
transitionTimingFunction: {
2121
ease: "cubic-bezier(0.25, 0.1, 0.16, 1)",
2222
},
23+
backgroundImage: {
24+
newsorange: "url('../public/newsorange.png')",
25+
newsblue: "url('../public/newsblue.png')",
26+
newspurple: "url('../public/newspurple.png')",
27+
newsteal: "url('../public/newsteal.png')",
28+
},
2329
plugins: [],
2430
},
2531
},

tscomm/pages/handpickedtech.js

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
import React from "react";
2+
3+
function handpickedtech() {
4+
return (
5+
<div class="bg-black p-[30px] font-sans font-semibold">
6+
{/* <!-- Section title --> */}
7+
<div class="flex ml-[-15px] mr-[-15px] ">
8+
<div class="mb-7">
9+
<h2 class="text-5xl text-white">
10+
Handpicked Technologies and Resources for all Developers and
11+
Will-be-Developers
12+
</h2>
13+
<div class="text-3xl mt-2 text-white">
14+
<p class="lead lh-180">Accesible to Everyone for Free</p>
15+
</div>
16+
</div>
17+
</div>
18+
{/* <!-- Card --> */}
19+
<div class="flex justify-between min-w-[825px] text-left ">
20+
<div class="bg-newsorange bg-cover basis-[30%] relative p-[20px] pt-[60px] flex flex-col mb-[30px] content-end cursor-pointer bg-center rounded-[20px] hover:brightness-125 hover:scale-[1.02] hover:transition-all hover:ease-in-out">
21+
<div class="absolute w-[100%] h-[100%] inset-0 bg-black/[0.2]"></div>
22+
<h4 class="opacity-60 relative font-semibold ">
23+
Unleash your Skills
24+
</h4>
25+
<h2 class="text-white relative text-[20px] leading-[1] pt-[6px]">
26+
Push your creativity to your absolute limits
27+
</h2>
28+
</div>
29+
<div class="bg-newsteal bg-cover basis-[30%] relative p-[20px] pt-[60px] flex flex-col mb-[30px] content-end cursor-pointer bg-center rounded-[20px] hover:brightness-125 hover:scale-[1.02] hover:transition-all hover:ease-in-out">
30+
<div class="absolute w-[100%] h-[100%] inset-0 bg-black/[0.2] "></div>
31+
<h4 class="opacity-60 relative font-semibold">
32+
Boost your Experience
33+
</h4>
34+
<h2 class="text-white relative text-[20px] leading-[1] pt-[6px]">
35+
Practice makes a man Experienced, this is no exception
36+
</h2>
37+
</div>
38+
<div class="bg-newspurple bg-cover basis-[30%] relative p-[20px] pt-[60px] flex flex-col mb-[30px] content-end cursor-pointer bg-center rounded-[20px] hover:brightness-125 hover:scale-[1.02] hover:transition-all hover:ease-in-out">
39+
<div class="absolute w-[100%] h-[100%] inset-0 bg-black/[0.2]"></div>
40+
<h4 class="opacity-60 relative font-semibold">
41+
Create a strong Portfolio
42+
</h4>
43+
<h2 class="text-white relative text-[20px] leading-[1] pt-[6px]">
44+
Showcase your work to the clients for better exposure
45+
</h2>
46+
</div>
47+
</div>
48+
</div>
49+
);
50+
}
51+
52+
export default handpickedtech;

tscomm/public/newsblue.png

18.1 KB
Loading

tscomm/public/newsorange.png

21.3 KB
Loading

tscomm/public/newspurple.png

17.8 KB
Loading

tscomm/public/newsteal.png

16.2 KB
Loading

0 commit comments

Comments
 (0)