fix short story missing

This commit is contained in:
Wouter van Veelen
2025-12-20 02:21:40 +01:00
parent 87932f1934
commit d3081dfea3
2 changed files with 5 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
import { Fragment, type ReactElement } from 'react';
import { Card, CardContent } from '@mui/material';
import { OutsideLink } from '../components/OutsideLink.tsx';
import squagonUrl from '../../assets/Squagon.pdf';
export function Storytelling(): ReactElement {
return (
@@ -21,7 +21,7 @@ export function Storytelling(): ReactElement {
I've also participated in a small short story writing competition for{' '}
<OutsideLink href='https://bellettrie.utwente.nl'>Bellettrie</OutsideLink>, the
student library of the University of Twente. The theme was 'Fairytale' and you can
read my entry <OutsideLink href='assets/Squagon.pdf'>here</OutsideLink>.
read my entry <OutsideLink href={squagonUrl}>here</OutsideLink>.
</p>
</Fragment>
);

View File

@@ -1,12 +1,12 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
// https://vite.dev/config/
export default defineConfig({
plugins: [
react({
babel: {
plugins: [["babel-plugin-react-compiler"]],
plugins: [['babel-plugin-react-compiler']],
},
}),
],