Skip to content

Commit b9bfbfd

Browse files
author
test
committed
add oxford comma to cssa description
1 parent 7644cda commit b9bfbfd

File tree

13 files changed

+139
-4
lines changed

13 files changed

+139
-4
lines changed

.history/pages/work_20240226024328.js

Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
import Head from 'next/head';
2+
import Image from 'next/image';
3+
import kirby from '../public/kirbyheadphoneblend-crop.png';
4+
import Link from 'next/link';
5+
import {BsFillMoonStarsFill} from 'react-icons/bs';
6+
import compasscard from '../public/cards/compass-card.png';
7+
import cssacard from '../public/cards/cssa-card.png';
8+
import mcgpaintcard from '../public/cards/mcgpaint-card.png';
9+
import dispotifycard from '../public/cards/dispotify-card.png';
10+
import NavMain from '../components/Nav.js';
11+
12+
function Work() {
13+
return (
14+
<div>
15+
<Head>
16+
<title>Hannah McGowan Portfolio</title>
17+
<meta name="description" content="Generated by create next app" />
18+
<link rel="icon" href="/kirbyicon.png" />
19+
</Head>
20+
21+
<NavMain />
22+
<main className="px-10 md:px-20 lg:px-40 pb-20 pt-5">
23+
24+
<div className="text-center pb-10">
25+
<h1 className="text-4xl pb-5 text-slate-900">work + projects</h1>
26+
<p className="text-lg text-slate-400">my website’s tech stack: figma, next.js, tailwind, material tailwind</p>
27+
</div>
28+
{/*<div className="flex items-center justify-center">
29+
<div className="px-2 py-4 text-center">
30+
<h1 className="font-semibold">This portfolio's tech stack: next.js, tailwind, material tailwind</h1>
31+
</div>
32+
</div>*/}
33+
<section>
34+
<div className="flex flex-col lg:flex-row lg:justify-center lg:gap-10 items-center">
35+
<Link href="cards/compass" className="w-[300px] md:w-[400px]">
36+
<div className="shadow-lg hover:shadow-2xl hover:shadow-light-blue-100 overflow-hidden dark:shadow-blue-500 rounded-xl my-10 active:border-blue-200 active:border-2">
37+
<div className="relative w-full h-80">
38+
<Image src={compasscard} className="object-cover" fill alt="compass logo"/>
39+
</div>
40+
<div className="p-5 mt-4">
41+
<h3 className="text-lg font-bold text-slate-900 dark:text-slate-300">COMPASS - C4SF</h3>
42+
<p className="py-1 text-slate-800 dark:text-slate-400 text-sm">Develop + Design for Nonprofit Work</p>
43+
{/*<p className="text-slate-500 dark:text-slate-400 py-1">Nonprofit app for collecting IEP student data.</p>*/}
44+
</div>
45+
</div>
46+
</Link>
47+
<Link href="cards/cssa" className="w-[300px] md:w-[400px]">
48+
<div className="shadow-lg hover:shadow-2xl hover:shadow-light-blue-100 overflow-hidden dark:shadow-blue-500 rounded-xl my-10 active:border-blue-200 active:border-2">
49+
<div className="relative w-full h-80">
50+
<Image src={cssacard} className="object-cover" fill alt="cssa logo"/>
51+
</div>
52+
<div className="p-5 mt-4">
53+
<h3 className="text-lg font-bold text-slate-900 dark:text-slate-300">CSSA WEB REBUILD</h3>
54+
<p className="py-1 text-slate-800 dark:text-slate-400 text-sm">Ideate, Plan, Design, + Build for an Organization</p>
55+
{/*<p className="text-slate-500 dark:text-slate-400 py-1">Complete website rebuild for Berkeley CSSA.</p>*/}
56+
</div>
57+
</div>
58+
</Link>
59+
</div>
60+
<div className="flex flex-col lg:flex-row lg:justify-center lg:gap-10 items-center">
61+
<Link href="cards/mcgpaint" className="w-[300px] md:w-[400px]">
62+
<div className="shadow-lg hover:shadow-2xl hover:shadow-light-blue-100 overflow-hidden rounded-xl my-10 active:border-blue-200 active:border-2">
63+
<div className="relative w-full h-80">
64+
<Image src={mcgpaintcard} className="object-cover" fill alt="compass logo"/>
65+
</div>
66+
<div className="p-5 mt-4">
67+
<h3 className="text-lg font-bold text-slate-900 dark:text-slate-300">MCGOWAN PAINTING</h3>
68+
<p className="py-1 text-slate-800 dark:text-slate-400 text-sm">Discuss, Plan, + Build for a Client</p>
69+
{/*<p className="text-slate-500 dark:text-slate-400 py-1">Nonprofit app for collecting IEP student data.</p>*/}
70+
</div>
71+
</div>
72+
</Link>
73+
<Link href="cards/dispotify" className="w-[300px] md:w-[400px]">
74+
<div className="shadow-lg hover:shadow-2xl hover:shadow-light-blue-100 active:border-blue-200 active:border-2 overflow-hidden rounded-xl my-10">
75+
<div className="relative w-full h-80">
76+
<Image src={dispotifycard} className="object-cover" fill alt="cssa logo"/>
77+
</div>
78+
<div className="p-5 mt-4">
79+
<h3 className="text-lg font-bold text-slate-900 dark:text-slate-300">DISCOVER SPOTIFY</h3>
80+
<p className="py-1 text-slate-800 dark:text-slate-400 text-sm">Conceptualize + Develop for an Idea</p>
81+
{/*<p className="text-slate-500 dark:text-slate-400 py-1">Complete website rebuild for Berkeley CSSA.</p>*/}
82+
</div>
83+
</div>
84+
</Link>
85+
</div>
86+
</section>
87+
</main>
88+
</div>
89+
)
90+
}
91+
92+
export default Work
7.51 MB
Binary file not shown.
-1 Bytes
Binary file not shown.
Binary file not shown.

.next/server/pages/work.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.next/static/chunks/pages/work.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.next/static/chunks/webpack.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
/******/
132132
/******/ /* webpack/runtime/getFullHash */
133133
/******/ !function() {
134-
/******/ __webpack_require__.h = function() { return "dfc1cd6b9e91a59d"; }
134+
/******/ __webpack_require__.h = function() { return "635639a432fa11ae"; }
135135
/******/ }();
136136
/******/
137137
/******/ /* webpack/runtime/global */
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"c":["pages/work","webpack"],"r":[],"m":[]}

.next/static/webpack/pages/work.dfc1cd6b9e91a59d.hot-update.js

Lines changed: 22 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
"use strict";
2+
/*
3+
* ATTENTION: An "eval-source-map" devtool has been used.
4+
* This devtool is neither made for production nor for readable output files.
5+
* It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools.
6+
* If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
7+
* or disable the default devtool with "devtool: false".
8+
* If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
9+
*/
10+
self["webpackHotUpdate_N_E"]("webpack",{},
11+
/******/ function(__webpack_require__) { // webpackRuntimeModules
12+
/******/ /* webpack/runtime/getFullHash */
13+
/******/ !function() {
14+
/******/ __webpack_require__.h = function() { return "635639a432fa11ae"; }
15+
/******/ }();
16+
/******/
17+
/******/ }
18+
);

.next/trace

Lines changed: 2 additions & 0 deletions
Large diffs are not rendered by default.

pages/work.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function Work() {
5151
</div>
5252
<div className="p-5 mt-4">
5353
<h3 className="text-lg font-bold text-slate-900 dark:text-slate-300">CSSA WEB REBUILD</h3>
54-
<p className="py-1 text-slate-800 dark:text-slate-400 text-sm">Ideate, Plan, Design + Build for an Organization</p>
54+
<p className="py-1 text-slate-800 dark:text-slate-400 text-sm">Ideate, Plan, Design, + Build for an Organization</p>
5555
{/*<p className="text-slate-500 dark:text-slate-400 py-1">Complete website rebuild for Berkeley CSSA.</p>*/}
5656
</div>
5757
</div>

0 commit comments

Comments
 (0)