Remove and update images

This commit is contained in:
Dilson's Pickles
2023-09-26 17:02:36 +10:00
parent 135c5e8686
commit 54078bd74f
12 changed files with 16 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 90 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 628 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

View File

@@ -19,7 +19,7 @@ const options = {
---
<a href=`/blog/${href}` class="col-span-12 sm:col-span-6 md:col-span-4 flex flex-col gap-4">
<img class="rounded-md aspect-video" alt={coverAlt} src={cover.src} />
<img class="rounded-md aspect-image" alt={coverAlt} src={cover.src} />
<div class="flex flex-col gap-1">
<small>{publishDate.toLocaleDateString("en-US", options)}</small>
<h3>{title}</h3>

View File

@@ -2,7 +2,7 @@
title: A new blog
author: Leo Wattenberg
description: A lot of our work has been focused on getting Audacity ready for a version 4. As such, a lot of under-the-hood work has been happening - in technical terms - reducing dependency on wxWidgets, library extractions and general refactoring. This work will continue for the next few releases in parallel with feature development.
cover: "./our-new-website.jpg"
cover: "./a-new-blog.jpg"
coverAlt: "A picture of Audacity 3.3"
publishDate: 2025-09-12
draft: false

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 101 KiB

After

Width:  |  Height:  |  Size: 111 KiB

View File

@@ -2,7 +2,7 @@
title: Our new website
author: Leo Wattenberg
description: We've been working on a new website Audacity and here it is! We were struggling to keep on top of the admin side of Wordpress and so decided to move to Astro.js to make things a little more lightweight.
cover: "./beats-and-bars.png"
cover: "./our-new-website.jpg"
coverAlt: "A picture of Audacity 3.3"
publishDate: 2023-08-03
draft: false

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View File

@@ -19,6 +19,19 @@ const { title } = Astro.props;
<link rel="icon" type="image/svg+xml" href="/favicon.png" />
<link href="/output.css" rel="stylesheet" />
<meta name="generator" content={Astro.generator} />
<meta
name="title"
content="Audacity: Free, Open-Source Audio Editing Software"
/>
<meta
name="description"
content="Audacity is a free, easy-to-use, multi-track audio editor and recorder for Windows, Mac OS X, GNU/Linux and other operating systems. Edit, mix, and enhance your audio tracks with the power of Audacity. Download now."
/>
<meta
name="keywords"
content="Audacity, audio editing, audio recorder, open-source, audio software, sound editing, audio mixer"
/>
<title>{title}</title>
<ViewTransitions />
</head>