Skip to content

Commit

Permalink
Reoraganized files
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinTrinh1227 committed Sep 30, 2023
1 parent d6e2483 commit 39664fd
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 20 deletions.
20 changes: 10 additions & 10 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import React from "react";
import RepoStats from "./components/sections/RepoStats";
import Navbar from "./components/sections/Navbar";
import Linkbar from "./components/sections/Linkbar";
import Intro from "./components/sections/Intro";
import About from "./components/sections/About";
import Education from "./components/sections/Education";
import WorkExperience from "./components/sections/WorkExperience";
import SideProjects from "./components/sections/SideProjects";
import Footer from "./components/sections/Footer";
import Error404 from "./components/sections/Error404";
import RepoStats from "./components/RepoStats";
import Navbar from "./components/Navbar";
import Linkbar from "./components/Linkbar";
import Intro from "./components/Intro";
import About from "./components/About";
import Education from "./components/Education";
import WorkExperience from "./components/WorkExperience";
import SideProjects from "./components/SideProjects";
import Footer from "./components/Footer";
import Error404 from "./components/Error404";

import { BrowserRouter as Router, Route, Routes } from "react-router-dom";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import aboutMeJson from "../../content.json";
import aboutMeJson from "../content.json";
import { Fade } from "react-awesome-reveal";

/* ==========================================
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import contentData from "../../content.json";
import contentData from "../content.json";
import { Fade } from "react-awesome-reveal";

/* ==========================================
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import contentData from "../../content.json";
import contentData from "../content.json";

const Error404 = () => {
return (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import contentData from "../../content.json";
import contentData from "../content.json";
import { Fade } from "react-awesome-reveal";

/* ==========================================
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import contentData from "../../content.json";
import contentData from "../content.json";
import { FaComment } from "react-icons/fa";
import { Fade } from "react-awesome-reveal";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import contentData from "../../content.json";
import contentData from "../content.json";
import { FaGithub, FaLinkedin, FaHandshake } from "react-icons/fa";
import { MdEmail } from "react-icons/md";
import { Fade } from "react-awesome-reveal";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from "react";
import contentData from "../../content.json";
import contentData from "../content.json";
import { Fade } from "react-awesome-reveal";

/*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useState, useEffect } from "react";
import contentData from "../../content.json";
import contentData from "../content.json";
import { Fade } from "react-awesome-reveal";

/* ==========================================
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useState, useEffect } from "react";
import contentData from "../../content.json";
import contentData from "../content.json";
import { FaGithub, FaDownload, FaFilePdf } from "react-icons/fa";
import { FiExternalLink, FiFolder } from "react-icons/fi";
import { Fade } from "react-awesome-reveal";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useState } from "react";
import contentData from "../../content.json";
import contentData from "../content.json";
import { Fade } from "react-awesome-reveal";

/* ==========================================
Expand Down

0 comments on commit 39664fd

Please sign in to comment.