Skip to content

Commit 9b9f7d5

Browse files
committed
DND: From Serfs and Frauds 2
1 parent 4665b01 commit 9b9f7d5

15 files changed

+184
-9
lines changed

public/images/dnd/border.jpg

181 KB
Loading

public/images/dnd/dragon-left.png

168 KB
Loading

public/images/dnd/dragon-right.png

426 KB
Loading

public/images/dnd/parchment.png

4.44 MB
Loading

public/images/wallies/artem-sapegin-XGDBdSQ70O0-unsplash.jpg renamed to public/images/dnd/wallies/artem-sapegin-XGDBdSQ70O0-unsplash.jpg

File renamed without changes.

public/images/wallies/ember-navarro-3q2TzsUUVIo-unsplash.jpg renamed to public/images/dnd/wallies/ember-navarro-3q2TzsUUVIo-unsplash.jpg

File renamed without changes.

public/images/wallies/jr-korpa-RADGP_E2pBk-unsplash.jpg renamed to public/images/dnd/wallies/jr-korpa-RADGP_E2pBk-unsplash.jpg

File renamed without changes.

public/images/wallies/muhammad-haikal-sjukri--RMBf_xSf2U-unsplash.jpg renamed to public/images/dnd/wallies/muhammad-haikal-sjukri--RMBf_xSf2U-unsplash.jpg

File renamed without changes.

public/images/wallies/vida-huang-XHiLiBfp7UM-unsplash.jpg renamed to public/images/dnd/wallies/vida-huang-XHiLiBfp7UM-unsplash.jpg

File renamed without changes.

src/components/AnimatedRoutes.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import LogDetailPage from '../pages/LogDetailPage';
1212
import NotFoundPage from '../pages/NotFoundPage';
1313
import SeriesPage from '../pages/SeriesPage';
1414
import DndPage from '../pages/DndPage';
15+
import DndNotFoundPage from '../pages/DndNotFoundPage'; // New import
1516

1617
const pageVariants = {
1718
initial: {
@@ -205,6 +206,21 @@ function AnimatedRoutes() {
205206
</motion.div>
206207
}
207208
/>
209+
{/* D&D specific 404 page */}
210+
<Route
211+
path="/dnd/*"
212+
element={
213+
<motion.div
214+
initial="initial"
215+
animate="in"
216+
exit="out"
217+
variants={pageVariants}
218+
transition={pageTransition}
219+
>
220+
<DndNotFoundPage />
221+
</motion.div>
222+
}
223+
/>
208224
</Routes>
209225
</AnimatePresence>
210226
);

0 commit comments

Comments
 (0)