Skip to content

Commit 3b93f0f

Browse files
Portfolio entry and EINTY-IWeb entry.
1 parent 68e5bb3 commit 3b93f0f

File tree

5 files changed

+66
-0
lines changed

5 files changed

+66
-0
lines changed

src/Pages/Home.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff 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>

src/Pages/Projects.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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+
}
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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+
}

src/app.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ import Projects from './Pages/Projects'
77

88
import FirstGLSL from './Pages/ProjectsPage/FirstGLSL';
99
import PGASGame from './Pages/ProjectsPage/PGASGame';
10+
import EINTY_IWeb from './Pages/ProjectsPage/EINTY-IWeb';
11+
import PortfolioLog from './Pages/ProjectsPage/PortfolioLog';
1012

1113
export 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
</>;

0 commit comments

Comments
 (0)