Skip to content

Commit

Permalink
Changed style of row and added prerendering
Browse files Browse the repository at this point in the history
  • Loading branch information
jakewdr committed Nov 7, 2024
1 parent bbdf635 commit 8bd9bc8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/components/Navigation.astro
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
---

<div class="nav-links">
<a href="/">Home</a>
<a href="/about">About</a>
<a href="/links">Links</a>
<a rel="prerender" href="/">Home</a>
<a rel="prerender" href="/about">About</a>
<a rel="prerender" href="/links">Links</a>
</div>
9 changes: 5 additions & 4 deletions src/components/Snow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@ const Snow = () => {
height: "100vh",
}}
color="#d9d9d9"
snowflakeCount={175}
wind={[-0.5, 0.5]}
speed={[1, 1.5]}
radius={[3, 4]}
snowflakeCount={150}
wind={[0, 0]}
speed={[0.5, 1]}
radius={[2, 3]}
changeFrequency={100}
/>
);
};
Expand Down

0 comments on commit 8bd9bc8

Please sign in to comment.