diff options
| -rw-r--r-- | src/pages/projects.astro (renamed from src/pages/projects/index.astro) | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/src/pages/projects/index.astro b/src/pages/projects.astro index 50e72a6..80bc97c 100644 --- a/src/pages/projects/index.astro +++ b/src/pages/projects.astro @@ -3,25 +3,10 @@ import Page from "../layouts/Page.astro"; import projects from "../data/projects.json"; import "../styles/cards.css"; import GitHubProjects from "../components/GitHubProjects.svelte"; -import { Image } from 'astro:assets'; -import snugCup from '../images/snug_cup.png'; --- <Page title="Projects" description="Things that I have been working on in the past, and present"> <main> - <h2>3D Models</h2> - <div class="grid"> - <article class="card"> - <h1>Snug Cup</h1> - <p>My first 3D model for a school project</p> - <Image src={snugCup} alt="SnugCup" height="200" style="border-radius: 10px; " /> - <div class="row"> - <a href="">Download</a> - </div> - <small>Licensed under CC BY-NC-SA 4.0</small> - </article> - </div> - <h2>Programming</h2> <div class="grid"> { projects.map((project) => { @@ -54,3 +39,4 @@ import snugCup from '../images/snug_cup.png'; gap: 1em; } </style> + |
