Skip to content

Commit 614d239

Browse files
committed
Added prototype images and updated style
1 parent 513a3aa commit 614d239

9 files changed

Lines changed: 20 additions & 1 deletion
258 KB
Loading

public/images/prototype-1-help.png

99.4 KB
Loading
82.5 KB
Loading
83.2 KB
Loading

public/images/prototype-2-help.png

100 KB
Loading
123 KB
Loading
97.3 KB
Loading

src/pages/projects/DesignSprint.jsx

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Link } from 'react-router-dom';
2-
2+
import { getAssetPath } from '../../utils/paths';
33
export default function DesignSprint() {
44
return (
55
<main>
@@ -47,6 +47,11 @@ export default function DesignSprint() {
4747
We created our prototype using Figma. Our prototype included redesigns of the landing and notebook screen of NotebookLM. With our prototype, users are able to open an existing notebook
4848
on the interface, click the help button, and click back to the landing page from the notebook page. </p>
4949
<p><a href="https://www.figma.com/proto/ujl71RSqVC099YaSqKUx2q/Sprint-1-Prototype?node-id=0-1&t=GsvBIPngkHivrZjZ-1">Click to see our first prototype!</a></p>
50+
<div className="prototype-images">
51+
<img className='case-study-image' src={getAssetPath('/images/prototype-2-landing.png')} alt="Landing Page" />
52+
<img className='case-study-image' src={getAssetPath('/images/prototype-2-help.png')} alt="Help Button " />
53+
<img className='case-study-image' src={getAssetPath('/images/prototype-2-notebook.png')} alt="Notebook Page" />
54+
</div>
5055

5156
<h6>Stage 5 : Test your prototyped solution with users</h6>
5257
<p>
@@ -63,6 +68,11 @@ export default function DesignSprint() {
6368
<p>
6469
To complete this design sprint, our team utilized Google Calendar to schedule meetings, Google Docs to exchange files and collaborate on our written work, Figma to create our prototype,
6570
Google Meet for virtual meetings, and Google Chat for communications and planning.</p>
71+
<div className="prototype-images">
72+
<img className='case-study-image' src={getAssetPath('/images/prototype-2-landing.png')} alt="Landing Page" />
73+
<img className='case-study-image' src={getAssetPath('/images/prototype-2-help.png')} alt="Help Button " />
74+
<img className='case-study-image' src={getAssetPath('/images/prototype-2-notebook.png')} alt="Notebook Page" />
75+
</div>
6676
<p><a href="https://www.figma.com/proto/6ayKXGtRKEeMP6ID7v6t9u/Sprint-2-Prototype?node-id=2-2251&t=YIIudKxo0kO2j0R3-1&starting-point-node-id=2%3A2251">Click to see our revised prototype!</a></p>
6777
<h4>Final Outcome</h4>
6878
<h4>Reflection and Lessons Learned</h4>

src/styles/components.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -511,6 +511,15 @@ header.navbar-hidden {
511511
width: auto;
512512
}
513513

514+
.prototype-images {
515+
display: flex;
516+
flex-direction: row;
517+
gap: var(--spacing-8);
518+
margin-top: var(--spacing-8);
519+
margin-bottom: var(--spacing-8);
520+
align-items: center;
521+
}
522+
514523
/* Contact Section */
515524
.contact-section {
516525
background-color: var(--color-white);

0 commit comments

Comments
 (0)