Skip to content

Commit 13f55a6

Browse files
authored
Merge pull request #56 from codeXsit/revert-42-Codex-3-events
Revert "Codex 3 events"
2 parents ac15857 + 2158aed commit 13f55a6

File tree

11 files changed

+2
-182
lines changed

11 files changed

+2
-182
lines changed

src/App.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ const navLinks = [
1111
{ name: "Our Team", path: "/teams" },
1212
{ name: "Events", path: "/events" },
1313
{ name: "Gallery", path: "/gallery" },
14-
{ name: "Events", path: "/events" },
1514
{ name: "Contact", path: "/contact" },
1615
{ name: "Community", path: "/community" },
1716
];
-105 KB
Binary file not shown.
-58.9 KB
Binary file not shown.
-157 KB
Binary file not shown.
-55.9 KB
Binary file not shown.

src/assets/styles/index.css

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,3 @@ a {
2727
-webkit-text-stroke-width: 2px;
2828
-webkit-text-stroke-color: #737373;
2929
}
30-
31-
.words {
32-
position: relative;
33-
animation: move-words 25s linear infinite;
34-
margin: 0;
35-
}
36-
37-
@keyframes move-words {
38-
0% {
39-
left: 100%;
40-
}
41-
100% {
42-
left: -100%;
43-
}
44-
}

src/components/Navbar/index.jsx

Lines changed: 2 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,7 @@ function Navbar({ links }) {
5050
<li
5151
key={link.name}
5252
className={`
53-
font-semibold text-white md:my-0 md:ml-8
54-
border-b-2
55-
${
56-
location.pathname
57-
.toLowerCase()
58-
.includes(link.path.toLowerCase())
59-
? "border-red-500 hover:border-red-700"
60-
: "border-transparent hover:border-red-500"
61-
}
53+
group font-regular text-white md:my-0 md:ml-8 transition-all hover:text-primary
6254
`}
6355
>
6456
<Link to={link.path}>{link.name}</Link>
@@ -73,18 +65,7 @@ function Navbar({ links }) {
7365
/>
7466
</li>
7567
))}
76-
</ul>
77-
<button
78-
type="button"
79-
onClick={() => setIsOpen(!isOpen)}
80-
className="w-7 h-7 text-white cursor-pointer md:hidden"
81-
>
82-
{isOpen ? (
83-
<img src={closeIcon} alt="close" />
84-
) : (
85-
<img src={menuIcon} alt="menu" />
86-
)}
87-
</button>
68+
</ul>
8869
</nav>
8970
);
9071
}

src/pages/Events/card.jsx

Lines changed: 0 additions & 44 deletions
This file was deleted.

src/pages/Events/events.json

Lines changed: 0 additions & 38 deletions
This file was deleted.

src/pages/Events/index.jsx

Lines changed: 0 additions & 56 deletions
This file was deleted.

0 commit comments

Comments
 (0)