From 48850a08f3e682d04d656d1192ddaa2fc70ee972 Mon Sep 17 00:00:00 2001 From: Nicholas Pease Date: Wed, 29 May 2024 00:21:35 -0400 Subject: [PATCH] Final Touches --- .../src/app/projects/custom/chatmaps/page.js | 67 +++++++++++++------ 1 file changed, 45 insertions(+), 22 deletions(-) diff --git a/pease-portfolio/src/app/projects/custom/chatmaps/page.js b/pease-portfolio/src/app/projects/custom/chatmaps/page.js index 75d99f8..d049676 100644 --- a/pease-portfolio/src/app/projects/custom/chatmaps/page.js +++ b/pease-portfolio/src/app/projects/custom/chatmaps/page.js @@ -9,108 +9,120 @@ import {useEffect, useState} from 'react' import { FileList } from "../../../../components/filelist" +import YouTube from "react-youtube" + var chatmapsFileList = [ - { - "name": "Chatmaps Final Presentation Video", - "type": "MP4 Video", - "filename": "Chatmaps Final Presentation (Video).mp4", - "filetype": "MP4" - }, { "name": "Chatmaps Final Presentation Slides", "type": "PDF", "filename": "ChatMaps Final Presentation.pdf", - "filetype": "PDF" + "filetype": "PDF", + "path": "/project_files/chatmaps" }, { "name": "Chatmaps Proposal Presentation", "type": "PDF", "filename": "ChatMaps Proposal Presentation.pdf", - "filetype": "PDF" + "filetype": "PDF", + "path": "/project_files/chatmaps" }, { "name": "Configuration Management Document", "type": "PDF", "filename": "Config Management.pdf", - "filetype": "PDF" + "filetype": "PDF", + "path": "/project_files/chatmaps" }, { "name": "Design Pattern Document", "type": "PDF", "filename": "Design Pattern.pdf", - "filetype": "PDF" + "filetype": "PDF", + "path": "/project_files/chatmaps" }, { "name": "Domain Model Document", "type": "PDF", "filename": "Domain Model.pdf", - "filetype": "PDF" + "filetype": "PDF", + "path": "/project_files/chatmaps" }, { "name": "Future Plan Document", "type": "PDF", "filename": "Future Plan.pdf", - "filetype": "PDF" + "filetype": "PDF", + "path": "/project_files/chatmaps" }, { "name": "Sequence Diagram Document", "type": "PDF", "filename": "Sequence Diagram.pdf", - "filetype": "PDF" + "filetype": "PDF", + "path": "/project_files/chatmaps" }, { "name": "Software Architecture Document", "type": "PDF", "filename": "Software Architecture.pdf", - "filetype": "PDF" + "filetype": "PDF", + "path": "/project_files/chatmaps" }, { "name": "Sprint Backlog Document", "type": "PDF", "filename": "Sprint Backlog.pdf", - "filetype": "PDF" + "filetype": "PDF", + "path": "/project_files/chatmaps" }, { "name": "Sprint Review 2 Document", "type": "PDF", "filename": "Sprint Review 2.pdf", - "filetype": "PDF" + "filetype": "PDF", + "path": "/project_files/chatmaps" }, { "name": "Sprint Review 3 Document", "type": "PDF", "filename": "Sprint Review 3.pdf", - "filetype": "PDF" + "filetype": "PDF", + "path": "/project_files/chatmaps" }, { "name": "Sprint Review 4 Document", "type": "PDF", "filename": "Sprint Review 4.pdf", - "filetype": "PDF" + "filetype": "PDF", + "path": "/project_files/chatmaps" }, { "name": "Sprint Review 5 Document", "type": "PDF", "filename": "Sprint Review 5.pdf", - "filetype": "PDF" + "filetype": "PDF", + "path": "/project_files/chatmaps" }, { "name": "Software Requirements Specification Document", "type": "PDF", "filename": "SRS.pdf", - "filetype": "PDF" + "filetype": "PDF", + "path": "/project_files/chatmaps" }, { "name": "Test Plan", "type": "PDF", "filename": "Test Plan.pdf", - "filetype": "PDF" + "filetype": "PDF", + "path": "/project_files/chatmaps" }, { "name": "Use Case Models Document", "type": "PDF", "filename": "Use Case Models.pdf", - "filetype": "PDF" + "filetype": "PDF", + "path": "/project_files/chatmaps" } ] @@ -299,6 +311,17 @@ export default function Home() { +
+ Project Videos +
+
+ +
+
+ +
+
+
) } \ No newline at end of file