mirror of
https://codeberg.org/theamazing0/portfolio.git
synced 2025-10-30 10:22:18 -04:00
Compare commits
2 commits
a58308933b
...
5819416a7e
| Author | SHA1 | Date | |
|---|---|---|---|
| 5819416a7e | |||
| d25d8dbb75 |
4 changed files with 12 additions and 11 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
{
|
{
|
||||||
"name": "mini-site",
|
"name": "website",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
||||||
|
|
@ -229,8 +229,10 @@ function encryptString(input: string, difficultyPrefix = "0000") {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const decodeBtn = document.getElementById("decode-btn");
|
document.addEventListener("astro:page-load", () => {
|
||||||
if (decodeBtn) {
|
const decodeBtn = document.getElementById("decode-btn");
|
||||||
decodeBtn.addEventListener("click", decryptData);
|
if (decodeBtn) {
|
||||||
}
|
decodeBtn.addEventListener("click", decryptData);
|
||||||
|
}
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ import NavItem from "../components/NavItem.astro";
|
||||||
import Navbar from "../components/Navbar.astro";
|
import Navbar from "../components/Navbar.astro";
|
||||||
import "@fontsource-variable/inter";
|
import "@fontsource-variable/inter";
|
||||||
import interWoff2 from "@fontsource-variable/inter/files/inter-latin-wght-normal.woff2";
|
import interWoff2 from "@fontsource-variable/inter/files/inter-latin-wght-normal.woff2";
|
||||||
// import { ClientRouter } from "astro:transitions";
|
import { ClientRouter } from "astro:transitions";
|
||||||
---
|
---
|
||||||
|
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
|
|
@ -33,7 +33,7 @@ import interWoff2 from "@fontsource-variable/inter/files/inter-latin-wght-normal
|
||||||
crossorigin="anonymous"
|
crossorigin="anonymous"
|
||||||
/>
|
/>
|
||||||
<meta name="generator" content={Astro.generator} />
|
<meta name="generator" content={Astro.generator} />
|
||||||
<!-- <ClientRouter /> -->
|
<ClientRouter />
|
||||||
<title>{title}</title>
|
<title>{title}</title>
|
||||||
</head>
|
</head>
|
||||||
<div class="lg-container">
|
<div class="lg-container">
|
||||||
|
|
@ -114,6 +114,4 @@ import interWoff2 from "@fontsource-variable/inter/files/inter-latin-wght-normal
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
|
|
@ -7,5 +7,6 @@ title: Now
|
||||||
|
|
||||||
_Last updated Jul 28, 2025_
|
_Last updated Jul 28, 2025_
|
||||||
|
|
||||||
- I've been working on this personal website. I'm planning on submitting it to [Summer of Making](https://summer.hackclub.com/) to hopefully get a free domain for it.
|
- 🖥️ I've been working on this personal website. I'm planning on submitting it to [Summer of Making](https://summer.hackclub.com/) to hopefully get a free domain for it.
|
||||||
- Getting ready to start 11th grade in a week. I'm sort of looking forward to meeting with my friends more often again, but this summer has also been pretty fun.
|
- 📚 Getting ready to start 11th grade in a week. I'm sort of looking forward to meeting with my friends more often again, but this summer has also been pretty fun.
|
||||||
|
- 🌼 My [native plants](https://gnps.org/georgias-native-plants/) that I started growing from seed this year seem to be doing well. The Wild Bergamots are doing very good and haven't been bothered by any animals even before I put some chicken wire up. The rest have suffered some damage from eating, but are still growing back.
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue