Compare commits

..

2 Commits

Author SHA1 Message Date
jiakai from macos 9aa431191d feat: Merge branch 'main' of gitea.gujiakai.top:jiakai/astro-blog 2023-12-14 13:25:53 +08:00
jiakai from macos 8b83e89821 feat: Add Astro configuration and files 2023-12-14 10:54:43 +08:00
13 changed files with 4023 additions and 1 deletions

21
.gitignore vendored Normal file
View File

@ -0,0 +1,21 @@
# build output
dist/
# generated types
.astro/
# dependencies
node_modules/
# logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# environment variables
.env
.env.production
# macOS-specific files
.DS_Store

4
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,4 @@
{
"recommendations": ["astro-build.astro-vscode"],
"unwantedRecommendations": []
}

11
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}

View File

@ -1,2 +1,3 @@
# astro-blog
# Introduction
This repo stores my astro blog.

13
astro.config.mjs Normal file
View File

@ -0,0 +1,13 @@
import { defineConfig } from "astro/config";
import unocss from "@unocss/astro";
import presetWind from "@unocss/preset-wind";
export default defineConfig({
integrations: [
unocss({
presets: [
presetWind(),
]
}),
],
});

21
package.json Normal file
View File

@ -0,0 +1,21 @@
{
"name": "gujiakai.cn",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@unocss/reset": "^0.58.0",
"astro": "^4.0.4"
},
"devDependencies": {
"@unocss/astro": "^0.58.0",
"@unocss/preset-wind": "^0.58.0",
"unocss": "^0.58.0"
}
}

3832
pnpm-lock.yaml Normal file

File diff suppressed because it is too large Load Diff

9
public/favicon.svg Normal file
View File

@ -0,0 +1,9 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 128 128">
<path d="M50.4 78.5a75.1 75.1 0 0 0-28.5 6.9l24.2-65.7c.7-2 1.9-3.2 3.4-3.2h29c1.5 0 2.7 1.2 3.4 3.2l24.2 65.7s-11.6-7-28.5-7L67 45.5c-.4-1.7-1.6-2.8-2.9-2.8-1.3 0-2.5 1.1-2.9 2.7L50.4 78.5Zm-1.1 28.2Zm-4.2-20.2c-2 6.6-.6 15.8 4.2 20.2a17.5 17.5 0 0 1 .2-.7 5.5 5.5 0 0 1 5.7-4.5c2.8.1 4.3 1.5 4.7 4.7.2 1.1.2 2.3.2 3.5v.4c0 2.7.7 5.2 2.2 7.4a13 13 0 0 0 5.7 4.9v-.3l-.2-.3c-1.8-5.6-.5-9.5 4.4-12.8l1.5-1a73 73 0 0 0 3.2-2.2 16 16 0 0 0 6.8-11.4c.3-2 .1-4-.6-6l-.8.6-1.6 1a37 37 0 0 1-22.4 2.7c-5-.7-9.7-2-13.2-6.2Z" />
<style>
path { fill: #000; }
@media (prefers-color-scheme: dark) {
path { fill: #FFF; }
}
</style>
</svg>

After

Width:  |  Height:  |  Size: 749 B

61
src/components/Card.astro Normal file
View File

@ -0,0 +1,61 @@
---
interface Props {
title: string;
body: string;
href: string;
}
const { href, title, body } = Astro.props;
---
<li class="link-card">
<a href={href}>
<h2>
{title}
<span>&rarr;</span>
</h2>
<p>
{body}
</p>
</a>
</li>
<style>
.link-card {
list-style: none;
display: flex;
padding: 1px;
background-color: #23262d;
background-image: none;
background-size: 400%;
border-radius: 7px;
background-position: 100%;
transition: background-position 0.6s cubic-bezier(0.22, 1, 0.36, 1);
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.link-card > a {
width: 100%;
text-decoration: none;
line-height: 1.4;
padding: calc(1.5rem - 1px);
border-radius: 8px;
color: white;
background-color: #23262d;
opacity: 0.8;
}
h2 {
margin: 0;
font-size: 1.25rem;
transition: color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
p {
margin-top: 0.5rem;
margin-bottom: 0;
}
.link-card:is(:hover, :focus-within) {
background-position: 0;
background-image: var(--accent-gradient);
}
.link-card:is(:hover, :focus-within) h2 {
color: rgb(var(--accent-light));
}
</style>

1
src/env.d.ts vendored Normal file
View File

@ -0,0 +1 @@
/// <reference types="astro/client" />

29
src/layouts/Layout.astro Normal file
View File

@ -0,0 +1,29 @@
---
interface Props {
title: string;
description: string;
}
const { title } = Astro.props;
const { description } = Astro.props;
---
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content={description} />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="generator" content={Astro.generator} />
<title>{title}</title>
</head>
<body class="bg-gray-100">
<main class="container mx-auto p-4 flex flex-col justify-center items-center">
<slot name="main"/>
</main>
<footer class="p-4 text-center">
<slot name="footer" />
</footer>
</body>
</html>

16
src/pages/index.astro Normal file
View File

@ -0,0 +1,16 @@
---
import Layout from '../layouts/Layout.astro';
import { Image } from 'astro:assets';
---
<Layout title="顾佳凯的个人博客" description="顾佳凯的个人博客(国内版)">
<div slot="main">
<Image src="https://selfhosted.ing/this-site-is-in-building.webp" alt="A description of my image." width="500" height="500" />
</div>
<div slot="footer">
<p>备案信息:
<a href="https://beian.miit.gov.cn/" target="_blank" class="no-underline">苏ICP备2023016654号-1</a>
</p>
<span class="text-gradient">Powered By <a href="https://astro.build" class="no-underline">Astro</a></span>
</div>
</Layout>

3
tsconfig.json Normal file
View File

@ -0,0 +1,3 @@
{
"extends": "astro/tsconfigs/base"
}