Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./src/assets/TH-Logo.png" />
<link rel="icon" type="image/svg+xml" href="./src/assets/TH-Scribes-Logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Tactical Hacker Scribes</title>
</head>
Expand Down
Binary file removed src/assets/TH-Logo.png
Binary file not shown.
Binary file added src/assets/TH-Scribes-Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/LandingPage.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import "./LandingPage.css";
import THLogo from "../assets/TH-Logo.png"; // Import the logo
import THLogo from "../assets/TH-Scribes-Logo.png"; // Import the logo

const LandingPage: React.FC = () => {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/components/LoginPopup.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import "./LoginPopup.css";
import THLogo from "../assets/TH-Logo.png"; // Import the logo
import THLogo from "../assets/TH-Scribes-Logo.png"; // Import the logo

interface LoginPopupProps {
onClose: () => void;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Navbar.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import "./Navbar.css";
import THLogo from "../assets/TH-Logo.png"; // Import the logo
import THLogo from "../assets/TH-Scribes-Logo.png"; // Import the logo

interface NavbarProps {
onLoginClick: () => void;
Expand Down
2 changes: 1 addition & 1 deletion src/components/SignupPopup.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
import "./SignupPopup.css";
import THLogo from "../assets/TH-Logo.png"; // Import the logo
import THLogo from "../assets/TH-Scribes-Logo.png"; // Import the logo

interface SignupPopupProps {
onClose: () => void;
Expand Down