Skip to content

Commit

Permalink
Merge pull request #48 from eksqtr/enhancement/restructuring-project-…
Browse files Browse the repository at this point in the history
…structure

Restructuring directories of the project
  • Loading branch information
eksqtr authored Aug 27, 2024
2 parents ce96ea7 + 91ac756 commit 54de47c
Show file tree
Hide file tree
Showing 13 changed files with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import Image from "next/image";
import ejc from "@@/public/me.jpg"
import ejc from "@@/public/images/me.jpg"
import { AiFillLinkedin, AiFillGithub } from 'react-icons/ai';
import { RefObject } from "react";

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Empty file added lib/note.txt
Empty file.
Binary file added public/images/about.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
1 change: 0 additions & 1 deletion public/next.svg

This file was deleted.

1 change: 0 additions & 1 deletion public/vercel.svg

This file was deleted.

8 changes: 4 additions & 4 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
import { useState, useEffect, useRef} from 'react';

// Import the Components Navigation Bar
import NavigationBar from "@/app/components/navigation/navbar";
import AboutSection from "@/app/components/aboutsection/about";
import TechSection from "@/app/components/techsection/tech";
import NavigationBar from "@@/components/navigation/navbar";
import AboutSection from "@@/components/aboutsection/about";
import TechSection from "@@/components/techsection/tech";

// Design Utility
import MouseHoverCircle from "@/app/components/utilities/mousecirclehover";
import MouseHoverCircle from "@@/components/utilities/mousecirclehover";

export default function Home() {
const [isDarkMode, setDarkMode] = useState(true); // Changing the default darkmode theme to true because its beautiful.
Expand Down

0 comments on commit 54de47c

Please sign in to comment.