Skip to content

Commit 1826552

Browse files
Site Update
1 parent 4b335ed commit 1826552

File tree

7 files changed

+3
-51
lines changed

7 files changed

+3
-51
lines changed

src/Pages/Home.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,12 @@ export default function Home(){
1313

1414
<h2 className="text-2xl">Projects</h2>
1515
<ul className="list-disc">
16-
<li><Link to="/proj-first-glsl" className="text-sky-300">First GLSL</Link></li>
1716
<li><Link to="/proj-pgas24-game" className="text-sky-300">PGAS24 Game</Link></li>
1817
<li><Link to="/proj-pgas25-game" className="text-sky-300">PGAS25 Game</Link></li>
1918
</ul>
2019

2120
<h2 className="text-2xl">Websites</h2>
2221
<ul className="list-disc">
23-
<li><Link to="/proj-einty-iweb" className='text-sky-300'>EINTY-IWeb</Link></li>
24-
<li><Link to="/proj-novainorion" className='text-sky-300'>NIO-IWeb</Link></li>
2522
<li><Link to="/proj-portfolio" className='text-sky-300'>Portfolio Log</Link></li>
2623
</ul>
2724

src/Pages/Projects.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,12 @@ export default function Projects(){
1010

1111
<h2 className="text-2xl"> Project Links </h2>
1212
<ul className="list-disc">
13-
<li><Link to="/proj-first-glsl" className="text-sky-300">First GLSL</Link></li>
1413
<li><Link to="/proj-pgas24-game" className="text-sky-300">PGAS24 Game</Link></li>
1514
<li><Link to="/proj-pgas25-game" className="text-sky-300">PGAS25 Game</Link></li>
1615
</ul>
1716

1817
<h2 className="text-2xl">Websites</h2>
1918
<ul className="list-disc">
20-
<li><Link to="/proj-einty-iweb" className='text-sky-300'>EINTY-IWeb</Link></li>
21-
<li><Link to="/proj-novainorion" className='text-sky-300'>NIO-IWeb</Link></li>
2219
<li><Link to="/proj-portfolio" className='text-sky-300'>Portfolio Log</Link></li>
2320
</ul>
2421
</article>

src/Pages/ProjectsPage/EINTY-IWeb.tsx

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/Pages/ProjectsPage/FirstGLSL.tsx

Lines changed: 0 additions & 11 deletions
This file was deleted.

src/Pages/ProjectsPage/NovaInOrion-IWeb.tsx

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/app.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,9 @@ import { Route, Routes } from 'react-router-dom';
55
import Home from './Pages/Home'
66
import Projects from './Pages/Projects'
77

8-
import FirstGLSL from './Pages/ProjectsPage/FirstGLSL';
98
import PGAS24Game from './Pages/ProjectsPage/PGAS24Game';
109
import PGAS25Game from './Pages/ProjectsPage/PGAS25Game';
11-
import EINTY_IWeb from './Pages/ProjectsPage/EINTY-IWeb';
1210
import PortfolioLog from './Pages/ProjectsPage/PortfolioLog';
13-
import NovaInOrion_IWeb from './Pages/ProjectsPage/NovaInOrion-IWeb';
1411

1512
export const App: React.FC = () => {
1613
return <>
@@ -28,12 +25,9 @@ export const App: React.FC = () => {
2825
<Route path="/proj" element={<Projects />} />
2926

3027
{/* Side Pages */}
31-
<Route path="/proj-first-glsl" element={<FirstGLSL />} />
3228
<Route path="/proj-pgas24-game" element={<PGAS24Game />} />
3329
<Route path="/proj-pgas25-game" element={<PGAS25Game />} />
34-
<Route path="/proj-einty-iweb" element={<EINTY_IWeb/>} />
3530
<Route path="/proj-portfolio" element={<PortfolioLog/>} />
36-
<Route path="/proj-novainorion" element={<NovaInOrion_IWeb/>} />
3731
</Routes>
3832
</div>
3933
</>;

src/index.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ nav {
2525
@apply flex items-center p-1
2626
}
2727

28+
li{
29+
@apply duration-100 flex
30+
}
2831
li:hover{
2932
@apply bg-gray-500
3033
}

0 commit comments

Comments
 (0)