Skip to content

Commit 15f1eaa

Browse files
authored
Merge pull request #3 from mmert9008/staging
updated dependencies
2 parents 61a0efa + 1e40552 commit 15f1eaa

File tree

9 files changed

+95
-92
lines changed

9 files changed

+95
-92
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"astro": "astro"
1010
},
1111
"dependencies": {
12-
"astro": "^5.13.2"
12+
"astro": "^5.13.3"
1313
},
1414
"devDependencies": {
1515
"prettier": "^3.6.2",

pnpm-lock.yaml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
onlyBuiltDependencies:
2+
- esbuild
3+
- sharp

src/components/Footer.astro

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
---
2-
import '../styles/global.css';
3-
import Social from './Social.astro';
4-
5-
---
6-
7-
<style>
8-
footer {
9-
display: flex;
10-
gap: 1rem;
11-
margin-top: 2rem;
12-
}
13-
</style>
14-
15-
<footer>
16-
<Social platform="github" username="mmert9008" />
1+
---
2+
import '../styles/global.css';
3+
import Social from './Social.astro';
4+
5+
---
6+
7+
<style>
8+
footer {
9+
display: flex;
10+
gap: 1rem;
11+
margin-top: 2rem;
12+
}
13+
</style>
14+
15+
<footer>
16+
<Social platform="github" username="mmert9008" />
1717
</footer>

src/components/Navigation.astro

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
---
2-
import '../styles/global.css';
3-
4-
5-
---
6-
7-
<a href="/">Home</a>
8-
<a href="/about/">About</a>
9-
<a href="/blog/">Blog</a>
1+
---
2+
import '../styles/global.css';
3+
4+
5+
---
6+
7+
<a href="/">Home</a>
8+
<a href="/about/">About</a>
9+
<a href="/blog/">Blog</a>

src/components/Social.astro

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
---
2-
import '../styles/global.css';
3-
4-
const { platform, username } = Astro.props;
5-
---
6-
7-
<a href={`https://www.${platform}.com/${username}`}>{platform}</a>
8-
9-
<style>
10-
a {
11-
padding: 0.5rem 1rem;
12-
color: white;
13-
background-color: #4c1d95;
14-
text-decoration: none;
15-
}
1+
---
2+
import '../styles/global.css';
3+
4+
const { platform, username } = Astro.props;
5+
---
6+
7+
<a href={`https://www.${platform}.com/${username}`}>{platform}</a>
8+
9+
<style>
10+
a {
11+
padding: 0.5rem 1rem;
12+
color: white;
13+
background-color: #4c1d95;
14+
text-decoration: none;
15+
}
1616
</style>

src/pages/posts/post-2.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
---
2-
title: My Second Blog Post
3-
author: Astro Learner
4-
description: "After learning some Astro, I couldn't stop!"
5-
image:
6-
url: "https://docs.astro.build/assets/arc.webp"
7-
alt: "The Astro logo on a dark background with a purple gradient arc."
8-
pubDate: 2025-08-19
9-
tags: ["astro", "blogging", "learning in public", "successes"]
10-
---
1+
---
2+
title: My Second Blog Post
3+
author: Astro Learner
4+
description: "After learning some Astro, I couldn't stop!"
5+
image:
6+
url: "https://docs.astro.build/assets/arc.webp"
7+
alt: "The Astro logo on a dark background with a purple gradient arc."
8+
pubDate: 2025-08-19
9+
tags: ["astro", "blogging", "learning in public", "successes"]
10+
---
1111
After a successful first week learning Astro, I decided to try some more. I wrote and imported a small component from memory!

src/pages/posts/post-3.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
---
2-
title: My Third Blog Post
3-
author: Astro Learner
4-
description: "I had some challenges, but asking in the community really helped!"
5-
image:
6-
url: "https://docs.astro.build/assets/rays.webp"
7-
alt: "The Astro logo on a dark background with rainbow rays."
8-
pubDate: 2025-08-19
9-
tags: ["astro", "learning in public", "setbacks", "community"]
10-
---
1+
---
2+
title: My Third Blog Post
3+
author: Astro Learner
4+
description: "I had some challenges, but asking in the community really helped!"
5+
image:
6+
url: "https://docs.astro.build/assets/rays.webp"
7+
alt: "The Astro logo on a dark background with rainbow rays."
8+
pubDate: 2025-08-19
9+
tags: ["astro", "learning in public", "setbacks", "community"]
10+
---
1111
It wasn't always smooth sailing, but I'm enjoying building with Astro. And, the [Discord community](https://astro.build/chat) is really friendly and helpful!

src/styles/global.css

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,31 @@
1-
*,
2-
::before,
3-
::after,
4-
::backdrop,
5-
::file-selector-button {
6-
box-sizing: border-box;
7-
margin: 0;
8-
padding: 0;
9-
}
10-
11-
html {
12-
background-color: #f1f5f9;
13-
font-family: sans-serif;
14-
}
15-
16-
body {
17-
margin: 0 auto;
18-
width: 100%;
19-
max-width: 80ch;
20-
padding: 1rem;
21-
line-height: 1.5;
22-
}
23-
24-
* {
25-
box-sizing: border-box;
26-
}
27-
28-
h1 {
29-
margin: 1rem 0;
30-
font-size: 2.5rem;
1+
*,
2+
::before,
3+
::after,
4+
::backdrop,
5+
::file-selector-button {
6+
box-sizing: border-box;
7+
margin: 0;
8+
padding: 0;
9+
}
10+
11+
html {
12+
background-color: #f1f5f9;
13+
font-family: sans-serif;
14+
}
15+
16+
body {
17+
margin: 0 auto;
18+
width: 100%;
19+
max-width: 80ch;
20+
padding: 1rem;
21+
line-height: 1.5;
22+
}
23+
24+
* {
25+
box-sizing: border-box;
26+
}
27+
28+
h1 {
29+
margin: 1rem 0;
30+
font-size: 2.5rem;
3131
}

0 commit comments

Comments
 (0)