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", "name": "publish",
"version": "0.0.1", "version": "0.1.0",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "publish", "name": "publish",
"version": "0.0.1", "version": "0.1.0",
"dependencies": { "dependencies": {
"@astrojs/mdx": "^4.3.13", "@astrojs/mdx": "^4.3.13",
"@astrojs/rss": "^4.0.15", "@astrojs/rss": "^4.0.15",

View File

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

View File

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