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
8 changes: 4 additions & 4 deletions src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React, { useState } from "react";
import Navbar from "./components/Navbar";
import LoginPopup from "./components/LoginPopup";
import SignupPopup from "./components/SignupPopup";
import LandingPage from "./components/LandingPage";
import Navbar from "./components/Navbar/Navbar";
import LoginPopup from "./components/LoginPopup/LoginPopup";
import SignupPopup from "./components/SignupPopup/SignupPopup";
import LandingPage from "./components/LandingPage/LandingPage";
import "./App.css";

const App: React.FC = () => {
Expand Down
11 changes: 0 additions & 11 deletions src/components/Header.tsx

This file was deleted.

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-Scribes-Logo.png"; // Import the logo
import THLogo from "../../assets/TH-Scribes-Logo.png"; // Import the logo

const LandingPage: React.FC = () => {
return (
Expand Down
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-Scribes-Logo.png"; // Import the logo
import THLogo from "../../assets/TH-Scribes-Logo.png"; // Import the logo

interface LoginPopupProps {
onClose: () => void;
Expand Down
File renamed without changes.
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-Scribes-Logo.png"; // Import the logo
import THLogo from "../../assets/TH-Scribes-Logo.png"; // Import the logo

interface NavbarProps {
onLoginClick: () => void;
Expand Down
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-Scribes-Logo.png"; // Import the logo
import THLogo from "../../assets/TH-Scribes-Logo.png"; // Import the logo

interface SignupPopupProps {
onClose: () => void;
Expand Down
19 changes: 0 additions & 19 deletions src/components/cards/Card.tsx

This file was deleted.

2 changes: 0 additions & 2 deletions src/components/index.ts

This file was deleted.