Compare commits

...

2 Commits

Author SHA1 Message Date
828e42e1ef Fix imports issue with typography 2026-03-16 15:05:55 -07:00
3e71f6accd Add ice cream photo 2026-03-16 14:07:56 -07:00
4 changed files with 5 additions and 152 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 676 KiB

View File

@ -1,148 +0,0 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns="http://www.w3.org/2000/svg"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
id="svg2"
sodipodi:docname="_svgclean2.svg"
viewBox="0 0 260 310"
version="1.1"
inkscape:version="0.48.3.1 r9886"
>
<sodipodi:namedview
id="base"
bordercolor="#666666"
inkscape:pageshadow="2"
inkscape:window-y="19"
fit-margin-left="0"
pagecolor="#ffffff"
fit-margin-top="0"
inkscape:window-maximized="0"
inkscape:zoom="1.4142136"
inkscape:window-x="0"
inkscape:window-height="768"
showgrid="false"
borderopacity="1.0"
inkscape:current-layer="layer1"
inkscape:cx="-57.248774"
inkscape:cy="-575.52494"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1024"
inkscape:pageopacity="0.0"
inkscape:document-units="px"
>
<inkscape:grid
id="grid3769"
originy="-752.36218px"
enabled="true"
originx="-35.03125px"
visible="true"
snapvisiblegridlinesonly="true"
type="xygrid"
empspacing="4"
/>
</sodipodi:namedview
>
<g
id="layer1"
inkscape:label="Layer 1"
inkscape:groupmode="layer"
transform="translate(-242.06 -371.19)"
>
<path
id="rect3757"
style="stroke:#636363;stroke-width:6;fill:#ffffff"
inkscape:connector-curvature="0"
d="m38 53v304h254v-226.22l-77.78-77.78h-176.22z"
transform="translate(207.06 321.19)"
/>
<g
id="g3915"
transform="translate(0 17.678)"
>
<rect
id="rect3759"
style="stroke-linejoin:round;stroke:#a6a6a6;stroke-linecap:round;stroke-width:6;fill:#ffffff"
height="150"
width="130"
y="451.19"
x="307.06"
/>
<path
id="path3761"
d="m343.53 497.65 57.065 57.065"
style="stroke-linejoin:round;stroke:#e00000;stroke-linecap:round;stroke-width:12;fill:none"
inkscape:connector-curvature="0"
/>
<path
id="path3763"
style="stroke-linejoin:round;stroke:#e00000;stroke-linecap:round;stroke-width:12;fill:none"
inkscape:connector-curvature="0"
d="m400.6 497.65-57.065 57.065"
/>
</g
>
<path
id="rect3911"
sodipodi:nodetypes="ccc"
style="stroke-linejoin:round;stroke:#636363;stroke-width:6;fill:none"
inkscape:connector-curvature="0"
d="m499.06 451.97h-77.782v-77.782"
/>
</g
>
<metadata
id="metadata13"
>
<rdf:RDF
>
<cc:Work
>
<dc:format
>image/svg+xml</dc:format
>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage"
/>
<cc:license
rdf:resource="http://creativecommons.org/licenses/publicdomain/"
/>
<dc:publisher
>
<cc:Agent
rdf:about="http://openclipart.org/"
>
<dc:title
>Openclipart</dc:title
>
</cc:Agent
>
</dc:publisher
>
</cc:Work
>
<cc:License
rdf:about="http://creativecommons.org/licenses/publicdomain/"
>
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction"
/>
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution"
/>
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks"
/>
</cc:License
>
</rdf:RDF
>
</metadata
>
</svg
>

Before

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -12,14 +12,14 @@ author: "jake"
description: "A simple custard-based ice cream."
featured: false
display: true
displayPhoto: "./assets/not-found.svg"
displayPhoto: "./assets/ice-cream.jpg"
---
<RecipeCard>
## Photos
![Not Found](./assets/not-found.svg)
*Not Found*
![Ice Cream](./assets/ice-cream.jpg)
*Ice Cream*
## Ingredients
- 2 cups whole milk

View File

@ -1,4 +1,5 @@
import type { Config } from "tailwindcss";
import typography from "@tailwindcss/typography";
export default {
content: [
@ -13,5 +14,5 @@ export default {
},
},
},
plugins: [require("@tailwindcss/typography")],
plugins: [typography],
} satisfies Config;