New composition and chores
Some checks failed
Build Docker Image and Deploy / Build Image and push to Registry (push) Failing after 43s
Build Docker Image and Deploy / Deploy on webserver (push) Has been skipped

- chore: update @astrojs
- fix: changed rendering type from 'hybrid' to 'static' as they were merged in @astrojs v5.0
- new: new composition - Space Experiments
This commit is contained in:
Cyril Šebek 2024-12-14 19:39:48 +01:00
parent 593d2d4ecf
commit da21c622e8
Signed by: blboun3
SSH Key Fingerprint: SHA256:ESaOKDAPaR/9j4DJ3sU4VdxTcL7qWUxpAyPSK2LLKbY
12 changed files with 524 additions and 690 deletions

View File

@ -9,7 +9,7 @@ import react from "@astrojs/react";
// https://astro.build/config
export default defineConfig({
output: "hybrid",
output: "static",
adapter: node({
mode: "standalone",
}),

View File

@ -12,12 +12,12 @@
"astro": "astro"
},
"dependencies": {
"@astrojs/mdx": "^3.1.9",
"@astrojs/node": "^8.3.4",
"@astrojs/react": "^3.6.2",
"@astrojs/rss": "^4.0.9",
"@astrojs/mdx": "^4.0.2",
"@astrojs/node": "^9.0.0",
"@astrojs/react": "^4.1.0",
"@astrojs/rss": "^4.0.10",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.2",
"@astrojs/tailwind": "^5.1.3",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-scroll-area": "^1.0.5",
@ -28,7 +28,7 @@
"@tailwindcss/typography": "^0.5.13",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.24",
"astro": "^4.16.13",
"astro": "^5.0.5",
"astro-seo": "^0.8.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",

1175
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 292 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -24,6 +24,8 @@ const { song } = Astro.props;
<span class="py-2"></span>
<CardTitle>{song.data.name[getLangFromUrl(Astro.url)]}</CardTitle>
<CardDescription>
{song.data.publishDate.toLocaleString(Astro.currentLocale)}
<br />
<br />
{song.data.comment[Astro.currentLocale]}
</CardDescription>

View File

@ -4,7 +4,7 @@ name:
fr: "Fantaisie pour clarinette et piano"
de: "Fantasia für B-Klarinette und Klavier"
cs: "Fantasie pro Bb klarinet a klavír"
publishDate: 2024-05-07T19:55:48Z
publishDate: 2024-07-05T19:55:48Z
pdfLink: "/music/Fantasia_Clarinet_Piano/Fantasia_Clarinet_Piano.pdf"
mp3Link: "/music/Fantasia_Clarinet_Piano/Fantasia_Clarinet_Piano.mp3"
flacLink: "/music/Fantasia_Clarinet_Piano/Fantasia_Clarinet_Piano.flac"

View File

@ -0,0 +1,19 @@
---
name:
en: "Space Experiments"
fr: "Space Experiments"
de: "Space Experiments"
cs: "Space Experiments"
publishDate: 2024-12-14T19:29:00Z
pdfLink: "/music/Space_Experiments/space_experiments.pdf"
mp3Link: "/music/Space_Experiments/space_experiments.mp3"
flacLink: "/music/Space_Experiments/space_experiments.flac"
image:
url: "/music/Space_Experiments/Preview.png"
alt: "Náhled not"
comment:
en: "This piece embarks on a celestial journey, tracing the awe-inspiring odyssey of astronauts venturing into the cosmos. From the meticulous orchestration of rocket preparations, where humanitys ingenuity takes form, to the exhilarating voyage through the velvet expanse of space, the narrative unfolds. Planets swirl in an otherworldly ballet, their silent waltz a testament to the grandeur of the universe. At last, the explorers touch down on an untouched, alien world—a place of infinite mystery and boundless potential, awaiting the first footprints of discovery."
cs: "Tento kus nás zve na nebeskou cestu, sledující úchvatnou odyseu astronautů putujících vesmírem. Od pečlivě připravené symfonie příprav rakety, kde se lidská vynalézavost zhmotňuje, až po strhující let sametovou hlubinou kosmu, se rozvíjí melodický příběh. Planety se vznášejí v nadpozemském baletu, jejich tichý valčík je oslavou velkoleposti vesmíru. Nakonec se průzkumníci dotýkají dosud nepoznané, cizí planety—místa nekonečného tajemství a neomezeného potenciálu, čekajícího na první stopy objevitelů."
de: "This piece embarks on a celestial journey, tracing the awe-inspiring odyssey of astronauts venturing into the cosmos. From the meticulous orchestration of rocket preparations, where humanitys ingenuity takes form, to the exhilarating voyage through the velvet expanse of space, the narrative unfolds. Planets swirl in an otherworldly ballet, their silent waltz a testament to the grandeur of the universe. At last, the explorers touch down on an untouched, alien world—a place of infinite mystery and boundless potential, awaiting the first footprints of discovery."
fr: "This piece embarks on a celestial journey, tracing the awe-inspiring odyssey of astronauts venturing into the cosmos. From the meticulous orchestration of rocket preparations, where humanitys ingenuity takes form, to the exhilarating voyage through the velvet expanse of space, the narrative unfolds. Planets swirl in an otherworldly ballet, their silent waltz a testament to the grandeur of the universe. At last, the explorers touch down on an untouched, alien world—a place of infinite mystery and boundless potential, awaiting the first footprints of discovery."
---

View File

@ -1,5 +1,5 @@
---
export const prerender = false;
export const prerender = true;
import MainLayout from "../../../layouts/MainLayout.astro";
import { getCompositions } from "../../../content/config";
import SinglePageBlogMode from "../../../layouts/SinglePageBlogMode.astro";