|
@@ -12,6 +12,7 @@ import Projects from "../components/projects.astro";
|
|
|
// Projects
|
|
// Projects
|
|
|
import Summize from "../components/projects/summize.astro";
|
|
import Summize from "../components/projects/summize.astro";
|
|
|
import Notion from "../components/projects/notion.astro";
|
|
import Notion from "../components/projects/notion.astro";
|
|
|
|
|
+import Imdb from "../components/projects/imdb.astro";
|
|
|
|
|
|
|
|
import "../styles/global.css";
|
|
import "../styles/global.css";
|
|
|
|
|
|
|
@@ -200,13 +201,17 @@ let projectsArr: project[] = [
|
|
|
id: "summize",
|
|
id: "summize",
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
- title: "Notion Canvas",
|
|
|
|
|
|
|
+ title: "Notion2Canvas",
|
|
|
id: "notion",
|
|
id: "notion",
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
title: "PGPCord",
|
|
title: "PGPCord",
|
|
|
id: "pgpcord",
|
|
id: "pgpcord",
|
|
|
},
|
|
},
|
|
|
|
|
+ {
|
|
|
|
|
+ title: "IMDB Frontend",
|
|
|
|
|
+ id: "imdb"
|
|
|
|
|
+ }
|
|
|
];
|
|
];
|
|
|
|
|
|
|
|
const row1Items = apps.filter((item) => item.row === 1);
|
|
const row1Items = apps.filter((item) => item.row === 1);
|
|
@@ -254,6 +259,7 @@ apps = apps.map((item) => {
|
|
|
<Projects projects={projectsArr} />
|
|
<Projects projects={projectsArr} />
|
|
|
<Summize />
|
|
<Summize />
|
|
|
<Notion />
|
|
<Notion />
|
|
|
|
|
+ <Imdb />
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|