Skip to content

Commit

Permalink
restructure(migration): related changes
Browse files Browse the repository at this point in the history
  • Loading branch information
proffapt committed Jan 4, 2024
1 parent d6878ac commit bd9ab46
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { BrowserRouter as Router, Switch, Route } from "react-router-dom";
// fs imports
import Login from "./pages/admin/Login";
import Dashboard from "./pages/admin/Dashboard/Dashboard";
import ContactUs from "./components/ContactForm/ContactForm";
import ContactUs from "./pages/ContactUs/ContactUs";
import Home from "./pages/Home";
import NotFound from "./pages/NotFound";
import PrivateRoute from "./routes/PrivateRoute";
Expand All @@ -18,8 +18,8 @@ import Booking from "./pages/Booking";
import Societies from "./pages/Societies";
import Events from "./pages/Events";
import ScrollToTop from "./components/ScrollToTop";
import Gallery from "./components/Gallery/Gallery";
import FAQ from "./components/FAQ/FAQ";
import Gallery from "./pages/Gallery/Gallery";
import FAQ from "./pages/FAQ/FAQ";
import Tech from "./pages/committees/2021/Tech";
import Sports from "./pages/committees/2021/sports";
import Welfare from "./pages/committees/2021/welfare";
Expand Down
2 changes: 1 addition & 1 deletion src/components/Sidebar/SidebarList.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { data } from "../FAQ/FaqData";
import { data } from "../../pages/FAQ/FaqData";

export const resultsSidebarList = [
{
Expand Down
4 changes: 2 additions & 2 deletions src/pages/ContactUs/ContactUs.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useState } from "react";
import "./ContactForm.css";
import "./ContactUs.css";
import Layout from "../../components/Layout";
import Styles from '../../styles/components/form.module.css';
import host from '../../apiService';
Expand Down Expand Up @@ -144,4 +144,4 @@ function ContactUs() {
);
}

export default ContactForm;
export default ContactUs;
2 changes: 1 addition & 1 deletion src/pages/Gallery/Gallery.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Container from "react-bootstrap/Container";
import Row from "react-bootstrap/Row";
import Col from "react-bootstrap/Col";
import "./Gallery.css";
import Layout from "../Layout";
import Layout from "../../components/Layout";
import img1 from "./images/Picture1.png";
import img2 from "./images/Picture2.jpg";
import img3 from "./images/Picture3.jpg";
Expand Down
8 changes: 4 additions & 4 deletions src/pages/Home.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React from "react";
import Layout from "../components/Layout";
import Styles from "../styles/pages/home.module.css";
import AboutUs from "../components/Homepage/AboutUs/AboutUs";
import CommitteesHome from "../components/Homepage/Committee/CommitteesHome";
import Societies from "../components/Homepage/Societies/Societies";
import Greet from "../components/Homepage/Greet";
import AboutUs from "../pages/Homepage/AboutUs/AboutUs";
import CommitteesHome from "../pages/Homepage/Committee/CommitteesHome";
import Societies from "../pages/Homepage/Societies/Societies";
import Greet from "../pages/Homepage/Greet";

export default function Home() {
document.title = "Home | TSG";
Expand Down

0 comments on commit bd9ab46

Please sign in to comment.