-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
32a2c92
commit 038086c
Showing
4 changed files
with
95 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
--- | ||
|
||
<nav class="flex justify-between mt-10 mb-14"> | ||
<a id="logo" href="/">marcelarie</a> | ||
<div id="right-navbar" class="flex space-x-4 self-center"> | ||
<a href="/about">About</a> | ||
<a href="/projects">Projects</a> | ||
</div> | ||
</nav> | ||
|
||
<style> | ||
nav #logo { | ||
font-family: "Pixel Code Light"; | ||
font-size: 36px; | ||
} | ||
|
||
nav #right-navbar a { | ||
font-family: "Noto Serif Georgia"; | ||
font-size: 24px; | ||
weight: regular; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
interface Props { | ||
error: unknown; | ||
} | ||
const { error } = Astro.props; | ||
console.log(error); | ||
--- | ||
|
||
<div>{error instanceof Error ? error.message : "Unknown error"}</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters