Skip to content

Commit 23b22bd

Browse files
authored
Merge pull request #26 from mmert9008/staging
update Biome formatting
2 parents 3014d8b + 3617b52 commit 23b22bd

File tree

18 files changed

+207
-219
lines changed

18 files changed

+207
-219
lines changed

astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ import preact from "@astrojs/preact";
77
export default defineConfig({
88
site: "https://astroblogtutorial.mertnet.us",
99
integrations: [preact()],
10-
});
10+
});

src/components/BlogPost.astro

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import "../styles/myDefault.css";
33
import "../styles/global.css";
44
55
const { title, url } = Astro.props;
6-
76
---
87

98
<li><a href={url}>{title}</a></li>

src/components/Footer.astro

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
---
2-
import "../styles/myDefault.css";
3-
import "../styles/global.css";
4-
import Social from './Social.astro';
5-
2+
import "../styles/myDefault.css";
3+
import "../styles/global.css";
4+
import Social from "./Social.astro";
65
---
76

87
<style>

src/components/Hamburger.astro

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
2-
import "../styles/myDefault.css";
3-
import "../styles/global.css";
4-
2+
import "../styles/myDefault.css";
3+
import "../styles/global.css";
54
---
65

76
<div class="hamburger">

src/components/Header.astro

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
2-
import "../styles/myDefault.css";
3-
import "../styles/global.css";
4-
import Hamburger from './Hamburger.astro';
5-
import Navigation from './Navigation.astro';
6-
import ThemeIcon from './ThemeIcon.astro';
7-
2+
import "../styles/myDefault.css";
3+
import "../styles/global.css";
4+
import Hamburger from "./Hamburger.astro";
5+
import Navigation from "./Navigation.astro";
6+
import ThemeIcon from "./ThemeIcon.astro";
87
---
98

109
<header>

src/components/Navigation.astro

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
2-
import "../styles/myDefault.css";
3-
import "../styles/global.css";
4-
2+
import "../styles/myDefault.css";
3+
import "../styles/global.css";
54
---
65

76
<div class="nav-links">

src/components/Social.astro

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
---
2-
import "../styles/myDefault.css";
3-
import "../styles/global.css";
4-
5-
const { platform, username } = Astro.props;
6-
2+
import "../styles/myDefault.css";
3+
import "../styles/global.css";
4+
5+
const { platform, username } = Astro.props;
76
---
87

98
<a href={`https://www.${platform}.com/${username}`} target='_blank'>{platform}</a>

src/components/ThemeIcon.astro

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
---
22
import "../styles/myDefault.css";
33
import "../styles/global.css";
4-
54
---
65

76
<button id="themeToggle" aria-label="Toggle theme">

src/layouts/BaseLayout.astro

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
---
2-
import "../styles/myDefault.css";
3-
import "../styles/global.css";
4-
import Header from "../components/Header.astro";
5-
import Footer from "../components/Footer.astro";
6-
7-
const { pageTitle } = Astro.props;
8-
2+
import "../styles/myDefault.css";
3+
import "../styles/global.css";
4+
import Header from "../components/Header.astro";
5+
import Footer from "../components/Footer.astro";
6+
7+
const { pageTitle } = Astro.props;
98
---
109

1110
<html lang="en">

src/layouts/MarkdownPostLayout.astro

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import "../styles/global.css";
44
import BaseLayout from "./BaseLayout.astro";
55
66
const { frontmatter } = Astro.props;
7-
87
---
98

109
<BaseLayout pageTitle={frontmatter.title}>

0 commit comments

Comments
 (0)