File tree Expand file tree Collapse file tree 5 files changed +66
-0
lines changed
Expand file tree Collapse file tree 5 files changed +66
-0
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,17 @@ export default function Home(){
1616 < li > < Link to = "/proj-first-glsl" className = "text-sky-300" > First GLSL</ Link > </ li >
1717 < li > < Link to = "/proj-pgas-game" className = "text-sky-300" > PGAS Game</ Link > </ li >
1818 </ ul >
19+
20+ < h2 className = "text-2xl" > Websites</ h2 >
21+ < ul className = "list-disc" >
22+ < li > < Link to = "/proj-einty-iweb" className = 'text-sky-300' > EINTY-IWeb</ Link > </ li >
23+ < li > < Link to = "/proj-portfolio" className = 'text-sky-300' > Portfolio Log</ Link > </ li >
24+ </ ul >
1925
2026 < h2 className = "text-2xl" > Links</ h2 >
2127 < ul className = "list-disc" >
2228 < li > < LinkNewWindow href = "https://github.com/Intermentality" > GitHub</ LinkNewWindow > </ li >
29+ < li > < LinkNewWindow href = "https://github.com/Intermentality/Intermentality.github.io" > GitHub Repo</ LinkNewWindow > </ li >
2330 </ ul >
2431
2532 < h2 className = "text-2xl" > Contacts</ h2 >
Original file line number Diff line number Diff line change @@ -14,6 +14,12 @@ export default function Projects(){
1414 < li > < Link to = "/proj-first-glsl" className = "text-sky-300" > First GLSL</ Link > </ li >
1515 < li > < Link to = "/proj-pgas-game" className = "text-sky-300" > PGAS Game</ Link > </ li >
1616 </ ul >
17+
18+ < h2 className = "text-2xl" > Websites</ h2 >
19+ < ul className = "list-disc" >
20+ < li > < Link to = "/proj-einty-iweb" className = 'text-sky-300' > EINTY-IWeb</ Link > </ li >
21+ < li > < Link to = "/proj-portfolio" className = 'text-sky-300' > Portfolio Log</ Link > </ li >
22+ </ ul >
1723 </ article >
1824 </ div >
1925}
Original file line number Diff line number Diff line change 1+ import { LinkNewWindow } from "../../Components/Link" ;
2+ import { Paragraph } from "../../Components/Paragraph" ;
3+
4+ export default function EINTY_IWeb ( ) {
5+ return < div className = "relative grid place-items-center" >
6+ < article className = "my-4 p-2 w-full max-w-sm md:max-w-2xl" >
7+ < h1 className = "text-4xl" > ENITY Interactive Website</ h1 >
8+ < Paragraph > Website I made for Literature with React18 Vite.</ Paragraph >
9+ < LinkNewWindow href = "https://intermentality.github.io/einty-iweb/" > Website.</ LinkNewWindow >
10+ < br />
11+ < LinkNewWindow href = "https://github.com/Intermentality/einty-iweb" > Github Repo.</ LinkNewWindow >
12+ </ article >
13+ </ div >
14+ }
Original file line number Diff line number Diff line change 1+ import { Paragraph } from "../../Components/Paragraph" ;
2+
3+ export default function PortfolioLog ( ) {
4+ return < div className = "relative grid place-items-center" >
5+ < article className = "my-4 p-2 w-full max-w-sm md:max-w-2xl" >
6+ < h1 className = "text-4xl" > Portfolio Log</ h1 >
7+
8+ < h2 > 12/12/2024</ h2 >
9+ < Paragraph >
10+ I've been mainly working on this portfolio
11+ since it's an intresting development cycle.
12+
13+ When I started, it was a fairly simply process
14+ of just using React17 and importing shaders which
15+ is cool.
16+
17+ Now I ran into a issue with importing images and kept
18+ trying to resolve the path every way possible.
19+
20+ But after a while I figured it out, it was since I was
21+ using React17 instead of React 18.
22+ </ Paragraph >
23+
24+ < Paragraph >
25+ When I switched to React 18 though, the images showed up
26+ but the shaders completely broke.
27+
28+ I'm still trying to find a way to do this now on my latest
29+ project with EINTY-IWeb, to both have shaders and images.
30+
31+ I'm not sure what the issue is but I'm figuring it out slowly.
32+ </ Paragraph >
33+ </ article >
34+ </ div >
35+ }
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ import Projects from './Pages/Projects'
77
88import FirstGLSL from './Pages/ProjectsPage/FirstGLSL' ;
99import PGASGame from './Pages/ProjectsPage/PGASGame' ;
10+ import EINTY_IWeb from './Pages/ProjectsPage/EINTY-IWeb' ;
11+ import PortfolioLog from './Pages/ProjectsPage/PortfolioLog' ;
1012
1113export const App : React . FC = ( ) => {
1214 return < >
@@ -26,6 +28,8 @@ export const App: React.FC = () => {
2628 { /* Side Pages */ }
2729 < Route path = "/proj-first-glsl" element = { < FirstGLSL /> } />
2830 < Route path = "/proj-pgas-game" element = { < PGASGame /> } />
31+ < Route path = "/proj-einty-iweb" element = { < EINTY_IWeb /> } />
32+ < Route path = "/proj-portfolio" element = { < PortfolioLog /> } />
2933 </ Routes >
3034 </ div >
3135 </ > ;
You can’t perform that action at this time.
0 commit comments