diff --git a/package-lock.json b/package-lock.json index 9ce11b0..5837d08 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2818,9 +2818,9 @@ "license": "MIT" }, "node_modules/consola": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.3.2.tgz", - "integrity": "sha512-X3dcWPU+QeEaPrdtX3zBRQ0P0kIeEnmJV49uNtpy4N/TPnzA3grJvHftKjHuFIQNLrqBPzzykmc3fNrkQDl5yA==", + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.3.3.tgz", + "integrity": "sha512-Qil5KwghMzlqd51UXM0b6fyaGHtOC22scxrwrz4A2882LyUMwQjnvaedN1HAeXzphspQ6CpHkzMAWxBTUruDLg==", "license": "MIT", "engines": { "node": "^14.18.0 || >=16.10.0" @@ -3211,9 +3211,9 @@ } }, "node_modules/es-module-lexer": { - "version": "1.5.4", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.4.tgz", - "integrity": "sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.6.0.tgz", + "integrity": "sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==", "license": "MIT" }, "node_modules/esast-util-from-estree": { @@ -6652,20 +6652,21 @@ } }, "node_modules/regex": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/regex/-/regex-5.0.2.tgz", - "integrity": "sha512-/pczGbKIQgfTMRV0XjABvc5RzLqQmwqxLHdQao2RTXPk+pmTXB2P0IaUHYdYyk412YLwUIkaeMd5T+RzVgTqnQ==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/regex/-/regex-5.1.0.tgz", + "integrity": "sha512-KNCzMdCkhhFKcWnqKIixAKDRzERQ/RTvENLRuLSqNFYdvn/XEgKSrpBHluYqnQxuDnzOB+iZRNGidQeEVe9upw==", "license": "MIT", "dependencies": { "regex-utilities": "^2.3.0" } }, "node_modules/regex-recursion": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/regex-recursion/-/regex-recursion-5.0.0.tgz", - "integrity": "sha512-UwyOqeobrCCqTXPcsSqH4gDhOjD5cI/b8kjngWgSZbxYh5yVjAwTjO5+hAuPRNiuR70+5RlWSs+U9PVcVcW9Lw==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/regex-recursion/-/regex-recursion-5.1.0.tgz", + "integrity": "sha512-8PNVYEQEw5fyIGDuLqXMP5WSSjNey+9q+pUFdVqBbPxo9PL8nl7ucZRa3jzooTz7D6wMOHDrCMdwc6fqL60EXw==", "license": "MIT", "dependencies": { + "regex": "^5.1.0", "regex-utilities": "^2.3.0" } }, diff --git a/src/components/Article.astro b/src/components/Article.astro index 02d8b5d..bb771f2 100644 --- a/src/components/Article.astro +++ b/src/components/Article.astro @@ -30,15 +30,17 @@ const listFormatter = new Intl.ListFormat("en-GB", { >
In collaboration with{" "} {listFormatter.format(article.data.extraAuthors)} @@ -82,14 +84,14 @@ const listFormatter = new Intl.ListFormat("en-GB", {
+
{prev.data.title}
@@ -42,7 +42,7 @@ const next = items[(index + 1) % items.length]; class="group flex w-fit flex-row items-center justify-between gap-6 self-end" > -+
{next.data.title}
diff --git a/src/components/Showcase.astro b/src/components/Showcase.astro deleted file mode 100644 index 54a804c..0000000 --- a/src/components/Showcase.astro +++ /dev/null @@ -1,49 +0,0 @@ ---- -import { Image } from "astro:assets"; -import FormattedDate from "@components/FormattedDate.astro"; - -type Props = { - collection: any; -}; - -const { collection } = Astro.props; ---- - -