Skip to content

Commit 1d360e6

Browse files
committed
feat: add original images
1 parent 3f864f4 commit 1d360e6

File tree

2 files changed

+63
-6
lines changed

2 files changed

+63
-6
lines changed

src/components/Footer/index.jsx

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
import { useState, useContext } from "react";
2+
import { Link, useLocation } from "react-router-dom";
3+
import PropTypes from "prop-types";
4+
import SymbiosisLogo from "@/assets/images/symbiosis-logo.png";
5+
import CodexLogo from "@/assets/images/codex-logo.png";
6+
import { CursorVariantContext } from "@/context/CursorVariantProvider";
7+
import Heading from "@/components/Heading/index";
8+
9+
function Footer() {
10+
const [isOpen, setIsOpen] = useState(false);
11+
const location = useLocation();
12+
13+
const { setCursorVariantNone, setCursorVariantDefault } =
14+
useContext(CursorVariantContext);
15+
16+
const handleLinkClick = () => {
17+
setIsOpen(false);
18+
};
19+
20+
return (
21+
<footer className="bg-primary py-6 mt-8">
22+
<div className="container mx-auto">
23+
<div className="flex justify-between items-center mb-4">
24+
<p className="text-white font-bold">CONNECT WITH US</p>
25+
<div className="flex space-x-4">
26+
<a href="#" className="text-white hover:text-gray-300">
27+
<i className="fab fa-instagram"></i>
28+
</a>
29+
<a href="#" className="text-white hover:text-gray-300">
30+
<i className="fab fa-facebook-f"></i>
31+
</a>
32+
<a href="#" className="text-white hover:text-gray-300">
33+
<i className="fab fa-linkedin-in"></i>
34+
</a>
35+
<a href="#" className="text-white hover:text-gray-300">
36+
<i className="fab fa-github"></i>
37+
</a>
38+
</div>
39+
</div>
40+
<div className="flex justify-between items-center">
41+
<div className="flex items-center space-x-4">
42+
<img
43+
src={SymbiosisLogo}
44+
alt="Symbiosis Institute of Technology"
45+
className="h-8"
46+
/>
47+
<p className="text-white font-bold">MADE WITH LOVE BY</p>
48+
<img src={CodexLogo} alt="Team Codex" className="h-8" />
49+
</div>
50+
<p className="text-center text-white">
51+
© 2024 CODEX | ALL RIGHTS RESERVED
52+
</p>
53+
</div>
54+
</div>
55+
</footer>
56+
);
57+
}
58+
59+
export default Footer;

src/pages/About/index.jsx

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
// import React from "react";
22
import Heading from "@/components/Heading/index";
3-
import Stock1 from "@/assets/images/About/stockimage1.svg";
4-
import Stock3 from "@/assets/images/About/stockimage3.svg";
53
import Oval from "@/assets/images/About/oval.svg";
64
import PageTransition from "../../components/PageTransition";
75

@@ -26,12 +24,12 @@ function About() {
2624
</p>
2725
<div className="flex flex-col md:flex-row justify-center gap-4">
2826
<img
29-
src={Stock1}
27+
src="/CodeX-Website/gallery/Laser Lock/ll4.jpg"
3028
alt="About Us 1"
3129
className="w-full md:w-1/2 max-w-md mx-auto rounded-2xl h-auto object-cover"
3230
/>
3331
<img
34-
src={Stock3}
32+
src="/CodeX-Website/gallery/Laser Lock/ll5.jpg"
3533
alt="About Us 2"
3634
className="w-full md:w-1/2 max-w-md mx-auto rounded-2xl h-auto object-cover"
3735
/>
@@ -94,12 +92,12 @@ function About() {
9492
</p>
9593
<div className="flex flex-col md:flex-row justify-center gap-8">
9694
<img
97-
src={Stock1}
95+
src="/CodeX-Website/gallery/Community Session/cs4.jpg"
9896
alt="What We Do 1"
9997
className="w-full md:w-1/2 max-w-md mx-auto rounded-lg h-auto object-cover"
10098
/>
10199
<img
102-
src={Stock3}
100+
src="/CodeX-Website/gallery/AIML SESSION/aiml2.jpg"
103101
alt="What We Do 2"
104102
className="w-full md:w-1/2 max-w-md mx-auto rounded-lg h-auto object-cover"
105103
/>

0 commit comments

Comments
 (0)