Skip to content

Commit

Permalink
fix: font?
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasohCHOM committed Sep 25, 2024
1 parent a960b3b commit 5db2bce
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
7 changes: 5 additions & 2 deletions src/pages/fa24.astro
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ const boxStyles = [
];
---

<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap"
/>

<Layout title="Fall 2024 Contributors | 1st">
<main>
{boxStyles.map((boxStyle) => <Box style={boxStyle} float={false} />)}
Expand All @@ -59,8 +64,6 @@ const boxStyles = [
</Layout>

<style>
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

main {
max-width: 1024px;
margin-inline: auto;
Expand Down
7 changes: 5 additions & 2 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ import FloatingBoxes from "../components/FloatingBoxes.astro";
import Layout from "../layouts/Layout.astro";
---

<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap"
/>

<Layout title="1st | ACM at CSUF Open Source Software Team">
<FloatingBoxes />

Expand Down Expand Up @@ -30,8 +35,6 @@ import Layout from "../layouts/Layout.astro";
</Layout>

<style>
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

main {
padding: 1rem 2rem;
max-width: max-content;
Expand Down
7 changes: 5 additions & 2 deletions src/pages/sp24.astro
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ const contributors: MarkdownEntry[] = Object.values(
);
---

<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap"
/>

<Layout title="Spring 2024 Contributors | 1st">
<main>
<h1>Welcome to First Contributions!</h1>
Expand Down Expand Up @@ -76,8 +81,6 @@ const contributors: MarkdownEntry[] = Object.values(
</main>

<style>
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

main {
max-width: 60ch;
margin: 0 auto;
Expand Down

0 comments on commit 5db2bce

Please sign in to comment.