Skip to content

Commit

Permalink
Added more projects
Browse files Browse the repository at this point in the history
  • Loading branch information
DwainAnderson committed Aug 26, 2024
1 parent d28d206 commit 3a8806a
Show file tree
Hide file tree
Showing 19 changed files with 27 additions and 6 deletions.
2 changes: 1 addition & 1 deletion components/Footer.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function Footer() {
const backgroundImage = '/images/winter-5.jpg';
const backgroundImage = '/assets/winter-5.jpg';
return (
<footer style={{backgroundImage: `url(${backgroundImage})`}}>
<h2 className="footer-h2">Contact Information</h2>
Expand Down
2 changes: 1 addition & 1 deletion components/Hamburger.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const Hamburger = ({ toggleMenu }) => {
return (
<button id="hamburger-button" onClick={toggleMenu} className="hidden">
<img src="/images/Hamburger_Icon.png" alt="Menu" height="60" width="60" />
<img src="/assets/Hamburger_Icon.png" alt="Menu" height="60" width="60" />
</button>
);
};
Expand Down
2 changes: 1 addition & 1 deletion components/Header.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Menu from '../components/Menu.js';

function Header() {
const backgroundImage = '/images/winter-1.jpg';
const backgroundImage = '/assets/winter-1.jpg';
return (
<header style={{backgroundImage: `url(${backgroundImage})`}}>
<h1>Dwain Anderson::Computer Science </h1>
Expand Down
2 changes: 1 addition & 1 deletion components/Menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import Hamburger from './Hamburger';
const Menu = () => {
const [menuOpen, setMenuOpen] = useState(false);
const toggleMenu = () => { setMenuOpen(!menuOpen); };
const resumeURL = '/images/resume.pdf';
const resumeURL = '/assets/resume.pdf';
return (
<div className='menu'>
<Hamburger toggleMenu={toggleMenu} />
Expand Down
21 changes: 21 additions & 0 deletions components/PortfolioDeckOfCards.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,27 @@ const projects = [
hasProjectLink: true,
projectLink: 'https://github.com/LambdaAK/CourseSphere'
},
{
projectTitle: 'VectorSpace',
projectDescription: 'A web-crawler project used to build a search engine built on vector similiarities',
projectImageUrl: placeholder,
hasProjectLink: true,
projectLink: 'https://github.com/Dwain-Anderson/VectorSpace/tree/main'
},
{
projectTitle: 'CU-Prelim Planner',
projectDescription: 'A simple exam-scheduler project, utilizing web-scraping and SQL to retrieve exam data.',
projectImageUrl: placeholder,
hasProjectLink: true,
projectLink: ''
},
{
projectTitle: 'Soundwave Analysis with Fourier Transform',
projectDescription: 'A python program that can take in a audio file and output different filtered and transformed versions of it. ',
projectImageUrl: placeholder,
hasProjectLink: true,
projectLink: 'https://github.com/Dwain-Anderson/Sound-Wave-Analysis-with-Fourier-Transform'
},
{
projectTitle: 'Image Selection Processor',
projectDescription: 'Java Swing app for image selection with Dijkstra’s algorithm, min-heaps, and multi-threading. GUI features live wire contouring and edge detection.',
Expand Down
2 changes: 1 addition & 1 deletion pages/coursework.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Footer from '../components/Footer.js';


function Coursework() {
const backgroundImage = '/images/winter-6.jpg';
const backgroundImage = '/assets/winter-6.jpg';
return (
<div className='main-coursework'>
<Header />
Expand Down
2 changes: 1 addition & 1 deletion pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Footer from '../components/Footer.js';
import PortfolioDeckOfCards from '../components/PortfolioDeckOfCards.js';

function Home() {
const backgroundImage = '/images/winter-8.jpg';
const backgroundImage = '/assets/winter-8.jpg';
return (
<div className='main'>
<Header />
Expand Down
File renamed without changes
File renamed without changes
Binary file added public/assets/resume.pdf
Binary file not shown.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Binary file removed public/images/resume.pdf
Binary file not shown.

0 comments on commit 3a8806a

Please sign in to comment.