Skip to content

Commit 034ace5

Browse files
authored
Merge pull request #89 from codexsit/feat/bug2bot
Feat/bug2bot
2 parents a82ab7c + 3f24e8e commit 034ace5

File tree

13 files changed

+293
-19
lines changed

13 files changed

+293
-19
lines changed

index.html

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,20 @@
11
<!doctype html>
22
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8" />
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6-
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
7-
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
8-
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
9-
<link rel="manifest" href="favicon/site.webmanifest">
10-
<title>CodeX</title>
11-
</head>
123

13-
<body>
14-
<div id="root"></div>
15-
<script type="module" src="/src/main.jsx"></script>
16-
</body>
17-
</html>
4+
<head>
5+
<meta charset="UTF-8" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-touch-icon.png">
8+
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
9+
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
10+
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap" rel="stylesheet" />
11+
<link rel="manifest" href="favicon/site.webmanifest">
12+
<title>CodeX</title>
13+
</head>
14+
15+
<body>
16+
<div id="root"></div>
17+
<script type="module" src="/src/main.jsx"></script>
18+
</body>
19+
20+
</html>

src/App.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ const navLinks = [
1717
{ name: "Gallery", path: "/gallery" },
1818
{ name: "Events", path: "/events" },
1919
{ name: "Contact Us", path: "/contact" },
20+
{ name: "Symbitech 2025", path: "/symbitech2025"}
2021
];
2122

2223
function App() {
1.72 MB
Loading
2.74 MB
Loading

src/assets/images/Bug2Bot/bug2botLogo.svg

Lines changed: 9 additions & 0 deletions
Loading
367 KB
Loading
364 KB
Loading
366 KB
Loading
138 KB
Loading

src/components/Footer/index.jsx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,7 @@ function Footer() {
3232
through a variety of activities and events.
3333
</p>
3434
<div className="flex flex-col sm:flex-row items-center gap-4 md:w-full">
35-
<img
36-
src={SitLogo}
37-
alt="Symbiosis Logo"
38-
className="h-12"
39-
/>
35+
<img src={SitLogo} alt="Symbiosis Logo" className="h-12" />
4036
<div className="hidden sm:block w-px h-12 bg-secondary-light"></div>
4137
<img
4238
src={Logo}
@@ -61,6 +57,7 @@ function Footer() {
6157
{ name: "Gallery", path: "/gallery" },
6258
{ name: "Events", path: "/events" },
6359
{ name: "Contact", path: "/contact" },
60+
{ name: "SymbiTech2025", path: "/symbitech2025" },
6461
].map((link) => (
6562
<li
6663
key={link.name}

0 commit comments

Comments
 (0)