Skip to content

Commit f4980b4

Browse files
committed
footeer
1 parent b5a5cdf commit f4980b4

10 files changed

+21
-21
lines changed

public/arambh.jpg

153 KB
Loading

public/hitesh.jpg

79 KB
Loading

public/manasvi.jpg

44.7 KB
Loading

public/piyush.jpg

1.05 MB
Loading

public/tejasvi.png

389 KB
Loading

public/yogesh.jpg

64.3 KB
Loading

src/.DS_Store

0 Bytes
Binary file not shown.

src/components/Features.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default function Theme() {
1717
];
1818

1919
return (
20-
<div className="bg-[url('/bg.jpg')] bg-fixed bg-cover relative bg-center bg-opacity-25 w-full mb-20">
20+
<div className="bg-[url('/bg.jpg')] bg-fixed bg-cover relative bg-center bg-opacity-25 w-full">
2121
<div id="features" className='abosule inset-0 bg-gradient-to-r from-[rgba(0,0,0,0.7)] to-[rgba(0,0,0,0.7)]'>
2222
<div className='w-10/12 mx-auto'>
2323
<div className='capitalize font-white text-5xl md:text-6xl inline-block text-center mb-10'>

src/components/Footer.jsx

+15-15
Original file line numberDiff line numberDiff line change
@@ -4,46 +4,46 @@ import FCard from './TeamCard';
44
const Footer = () => (
55
<footer className="footer" id="contact">
66
<div className="text-center">
7-
<h1 className="text-white bg-black p-4 shadow-lg rounded-lg transition-all shadow-white hover:scale-105">
7+
<h1 className="abosule inset-0 bg-gradient-to-r from-[rgba(0,0,0,0.7)] to-[rgba(0,0,0,0.7)] w-10/12 mx-auto capitalize font-white text-5xl md:text-6xl inline-block text-left mb-10 text-white neon-green mt-8">
88
Made by Team CyberSentinels
99
</h1>
1010
</div>
1111
<div className="flex justify-center items-center h-screen">
12-
<div className="grid grid-cols-1 sm:grid-cols-3 gap-8">
12+
<div className="grid grid-cols-1 sm:grid-cols-3 gap-20">
1313
<FCard
14-
image="/path-to-your-image.jpg"
15-
title="Card 1"
14+
image="/hitesh.jpg"
15+
title="Hitesh Bajaj"
1616
description="This is the description for Card 1"
1717
/>
1818
<FCard
19-
image="/path-to-your-image.jpg"
20-
title="Card 2"
19+
image="/yogesh.jpg"
20+
title="Yogesh Bajaj"
2121
description="This is the description for Card 2"
2222
/>
2323
<FCard
24-
image="/path-to-your-image.jpg"
25-
title="Card 3"
24+
image="/manasvi.jpg"
25+
title="Manasvi"
2626
description="This is the description for Card 3"
2727
/>
2828
<FCard
29-
image="/path-to-your-image.jpg"
30-
title="Card 4"
29+
image="/tejasvi.png"
30+
title="Tejasvi"
3131
description="This is the description for Card 4"
3232
/>
3333
<FCard
34-
image="/path-to-your-image.jpg"
35-
title="Card 1"
34+
image="/arambh.jpg"
35+
title="Arambh"
3636
description="This is the description for Card 1"
3737
/>
3838
<FCard
39-
image="/path-to-your-image.jpg"
40-
title="Card 1"
39+
image="/piyush.jpg"
40+
title="Piyush"
4141
description="This is the description for Card 1"
4242
/>
4343

4444
</div>
4545
</div>
46-
<h1> Team CyberSentinels is a group of innovative thinkers and tech enthusiasts, building the future of secure web solutions.</h1>
46+
<h1 className='text-white bg-black p-4 shadow-lg rounded-lg transition-all shadow-white hover:scale-105'> Team CyberSentinels is a group of innovative thinkers and tech enthusiasts, building the future of secure web solutions.</h1>
4747
</footer>
4848
);
4949

src/components/TeamCard.jsx

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,24 @@ const FCard = ({ image, title, description }) => {
99

1010
return (
1111
<div
12-
className={`relative w-64 h-80 cursor-pointer transform transition-transform duration-500 ${
12+
className={`relative w-64 h-80 cursor-pointer transform transition-transform duration-500 hover:shadow-[0_0_20px_10px_rgba(255,255,255,0.5)] ${
1313
isFlipped ? 'rotate-y-180' : ''
1414
}`}
1515
onClick={handleFlip}
1616
>
1717
{/* Front Side */}
1818
<div
19-
className={`absolute w-full h-full bg-white shadow-lg rounded-lg p-4 flex flex-col justify-center items-center backface-hidden transform ${
19+
className={`absolute w-60 h-60 bg-black shadow-lg rounded-3xl mt-8 p-4 flex flex-col justify-center items-center backface-hidden transform ${
2020
isFlipped ? 'rotate-y-180' : ''
2121
}`}
2222
>
23-
<img src={image} alt={title} className="w-32 h-32 mb-4 rounded-full" />
24-
<h3 className="text-xl font-bold">{title}</h3>
23+
<img src={image} alt={title} className="w-50 h-50 rounded-2xl mb-8" />
24+
<h3 className="text-xl font-bold text-white">{title}</h3>
2525
</div>
2626

2727
{/* Back Side */}
2828
<div
29-
className={`absolute w-full h-full bg-gray-200 shadow-lg rounded-lg p-4 flex justify-center items-center text-center backface-hidden transform rotate-y-180 ${
29+
className={`absolute w-full h-full bg-gray-500 shadow-lg rounded-3xl p-4 flex justify-center items-center text-center text-white backface-hidden transform rotate-y-180 ${
3030
isFlipped ? 'rotate-y-0' : 'rotate-y-180'
3131
}`}
3232
>

0 commit comments

Comments
 (0)