diff options
| author | Xe Iaso <me@christine.website> | 2023-10-22 12:07:10 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-22 12:07:10 -0400 |
| commit | 3cff11317d33da8b649c64aec3cb04df30616a26 (patch) | |
| tree | 60124b9cb3b4c63009a96e27e4f2bd49b184e707 /lume/src/_components | |
| parent | b888fd5986ab1867515b54d769b705642d2f9e44 (diff) | |
| download | xesite-3cff11317d33da8b649c64aec3cb04df30616a26.tar.xz xesite-3cff11317d33da8b649c64aec3cb04df30616a26.zip | |
Move serving logic to a .zip file, move static assets to S3 (#734)
* lume/src/static: remove these files because we don't need them
Also rename manifest.json to site.webmanifest because apparently that's
the best practice.
Signed-off-by: Xe Iaso <me@xeiaso.net>
* lume: fix deno lock
Signed-off-by: Xe Iaso <me@xeiaso.net>
* lume/src/_components: small fixes
Signed-off-by: Xe Iaso <me@xeiaso.net>
* lume: move this big file to S3
Signed-off-by: Xe Iaso <me@xeiaso.net>
* lume: move these static files to XeDN
Signed-off-by: Xe Iaso <me@xeiaso.net>
* internal/lume: store and serve the website from a .zip file
This will let the website continue to serve data while a rebuild is
happening. This also lets me download the website corpus for local
debugging should the worst happen.
Signed-off-by: Xe Iaso <me@xeiaso.net>
---------
Signed-off-by: Xe Iaso <me@xeiaso.net>
Diffstat (limited to 'lume/src/_components')
| -rw-r--r-- | lume/src/_components/BlockQuote.jsx | 2 | ||||
| -rw-r--r-- | lume/src/_components/XeblogConv.tsx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lume/src/_components/BlockQuote.jsx b/lume/src/_components/BlockQuote.jsx index bf15dd5..be562c7 100644 --- a/lume/src/_components/BlockQuote.jsx +++ b/lume/src/_components/BlockQuote.jsx @@ -4,4 +4,4 @@ export default function BlockQuote({ children }) { > {children} </div> ); -};
\ No newline at end of file +}; diff --git a/lume/src/_components/XeblogConv.tsx b/lume/src/_components/XeblogConv.tsx index c522e45..95f26fc 100644 --- a/lume/src/_components/XeblogConv.tsx +++ b/lume/src/_components/XeblogConv.tsx @@ -12,7 +12,7 @@ const ConvSnippet = ({ name, mood, children, standalone }: XeblogConvProps) => { return ( <> - <div className="my-4 flex space-x-4 rounded-md border border-solid border-fg-4 bg-bg-2 p-3 dark:border-fgDark-4 dark:bg-bgDark-2 max-w-full"> + <div className="my-4 flex space-x-4 rounded-md border border-solid border-fg-4 bg-bg-2 p-3 dark:border-fgDark-4 dark:bg-bgDark-2 max-w-full min-h-fit"> <div className="flex max-h-16 shrink-0 items-center justify-center self-center"> <img style="max-height:6rem" |
