chore: update version to 0.1.0 and remove Footer component from blog index

This commit is contained in:
voson
2026-02-03 16:53:03 +08:00
parent d1e56f3e8c
commit 5031b24d28
3 changed files with 3 additions and 5 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "publish",
"version": "0.0.1",
"version": "0.1.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "publish",
"version": "0.0.1",
"version": "0.1.0",
"dependencies": {
"@astrojs/mdx": "^4.3.13",
"@astrojs/rss": "^4.0.15",

View File

@@ -1,7 +1,7 @@
{
"name": "publish",
"type": "module",
"version": "0.0.1",
"version": "0.1.0",
"scripts": {
"dev": "astro dev",
"build": "astro build && pagefind --site dist",

View File

@@ -2,7 +2,6 @@
import { Image } from 'astro:assets';
import { getCollection } from 'astro:content';
import BaseHead from '../../components/BaseHead.astro';
import Footer from '../../components/Footer.astro';
import FormattedDate from '../../components/FormattedDate.astro';
import Header from '../../components/Header.astro';
import { SITE_DESCRIPTION, SITE_TITLE } from '../../consts';
@@ -109,6 +108,5 @@ const posts = (await getCollection('blog')).sort(
</ul>
</section>
</main>
<Footer />
</body>
</html>