Skip to content

Commit

Permalink
Temporary fix for missing images on projects
Browse files Browse the repository at this point in the history
  • Loading branch information
Midlou committed Jan 16, 2024
1 parent 6de6938 commit 3abf168
Show file tree
Hide file tree
Showing 13 changed files with 7 additions and 7 deletions.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/projects/doom-fire/doom-thumb-1.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file removed src/assets/projects/miceblocks/gold_block-32x.png
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion src/body/miceblocks-body.astro
Expand Up @@ -20,7 +20,7 @@ import '../styles/glow-hover.css';
<meta name="generator" content={Astro.generator} />
<title>{title}</title>
</head>
<body>
<body class="bg-gradient-to-r from-slate-600 to-slate-700">
<slot />
</body>
</html>
10 changes: 5 additions & 5 deletions src/constants/projects.js
Expand Up @@ -5,38 +5,38 @@ export const PROJECT_ITEMS = [
"label": "Doom fire",
"description": "Doom fire canvas with some basic parameter controls",
"release_date": "2020-01-01T00:00:00",
"thumbnail_path": "/src/assets/projects/doom-fire/doom-thumb-1.jpg"
"thumbnail_path": "/assets/projects/doom-fire/doom-thumb-1.jpg"
},
{
"page_link": "/projects/miceblocks",
"name": "miceblocks",
"label": "Miceblocks Resource Pack",
"description": "Miceblocks is a resource pack that I worked on in 2020",
"release_date": "2020-05-21T00:00:00",
"thumbnail_path": "/src/assets/projects/miceblocks/miceblocks-thumb-1.jpg"
"thumbnail_path": "/assets/projects/miceblocks/miceblocks-thumb-1.jpg"
},
{
"page_link": "/projects/cube",
"name": "cube",
"label": "The cube",
"description": "The cube",
"release_date": "2022-06-14T00:00:00",
"thumbnail_path": "/src/assets/projects/the-cube/the-cube-thumb-1.jpg"
"thumbnail_path": "/assets/projects/the-cube/the-cube-thumb-1.jpg"
},
{
"page_link": "/projects/little_red_star",
"name": "little_red_star",
"label": "Little Red Star",
"description": "Map made for the Escape From Black Mesa competition",
"thumbnail_path": "/src/assets/projects/little-red-star/little-red-star-thumb-1.jpg",
"thumbnail_path": "/assets/projects/little-red-star/little-red-star-thumb-1.jpg",
"release_date": "2022-10-18T00:00:00"
},
{
"page_link": "/projects/arena_symmetrical",
"name": "arena_symmetrical",
"label": "Arena symmetrical",
"description": "TF2 map inspired by popular achievement maps",
"thumbnail_path": "/src/assets/projects/arena-symmetrical/arena-symmetrical-thumb-1.jpg",
"thumbnail_path": "/assets/projects/arena-symmetrical/arena-symmetrical-thumb-1.jpg",
"release_date": "2016-03-11T00:00:00"
}
]
2 changes: 1 addition & 1 deletion src/pages-content/projects/miceblocks-content.jsx
Expand Up @@ -4,7 +4,7 @@ import { loadSlim } from "@tsparticles/slim";
import Particles, { initParticlesEngine } from "@tsparticles/react";

// images
import MiceblocksTextImage from "../../assets/images/miceblocks/miceblocks-text-1024x256.png";
import MiceblocksTextImage from "../../assets/projects/miceblocks/miceblocks-text-1024x256.png";

// styles
import '../../styles/glow-hover.css'
Expand Down

0 comments on commit 3abf168

Please sign in to comment.