diff --git a/src/components/ArrowUpRightIcon.astro b/src/components/ArrowUpRightIcon.astro deleted file mode 100644 index e31ce3f..0000000 --- a/src/components/ArrowUpRightIcon.astro +++ /dev/null @@ -1,24 +0,0 @@ ---- -interface Props { - size?: number; - class?: string; -} - -const { size = 16, class: className } = Astro.props; ---- - - - - - diff --git a/src/components/Header.astro b/src/components/Header.astro index daaecf3..7c8f9ef 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -3,8 +3,8 @@ import { SITE_TITLE } from "../consts"; import LedgerLabel from "./LedgerLabel.astro"; --- -
- +
+ {SITE_TITLE} Frontend Engineer diff --git a/src/components/LedgerLabel.astro b/src/components/LedgerLabel.astro index 8651302..56ec378 100644 --- a/src/components/LedgerLabel.astro +++ b/src/components/LedgerLabel.astro @@ -5,7 +5,7 @@ interface Props { class?: string; } -const { as: Tag = "span", href, class: className } = Astro.props; +const { as: Tag = "span", href, class: className } = Astro.props as Props; const classes = "text-ledger-muted font-sans text-sm font-medium uppercase tracking-wide leading-6"; const classList = [classes, className]; diff --git a/src/components/PostCard.astro b/src/components/PostCard.astro index 53e1290..2c4ae15 100644 --- a/src/components/PostCard.astro +++ b/src/components/PostCard.astro @@ -22,7 +22,7 @@ const { title, description, pubDate, href, featured = false } = Astro.props; {title} { featured && ( - + Featured ) diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro index 5d8d8ab..d64a6f1 100644 --- a/src/layouts/BaseLayout.astro +++ b/src/layouts/BaseLayout.astro @@ -7,9 +7,9 @@ import Header from "../components/Header.astro"; class="bg-page-bg pointer-events-none fixed top-0 left-0 z-50 h-14 w-full backdrop-blur-xl [-webkit-mask-image:linear-gradient(to_bottom,black,transparent)]" > -
+
-
+
diff --git a/src/layouts/BlogPost.astro b/src/layouts/BlogPost.astro index 841c764..aec0092 100644 --- a/src/layouts/BlogPost.astro +++ b/src/layouts/BlogPost.astro @@ -17,8 +17,8 @@ const { title, description, pubDate, updatedDate } = Astro.props;
-
- Meta +
+

{title}

@@ -33,8 +33,8 @@ const { title, description, pubDate, updatedDate } = Astro.props; }
-
- Content +
+
diff --git a/src/layouts/Talk.astro b/src/layouts/Talk.astro index 0db1cfd..5869a0b 100644 --- a/src/layouts/Talk.astro +++ b/src/layouts/Talk.astro @@ -18,8 +18,8 @@ const { title, description, pubDate, updatedDate, event, slides, recording } =
-
- Meta +
+

{title}

@@ -61,8 +61,8 @@ const { title, description, pubDate, updatedDate, event, slides, recording } = }
-
- Content +
+
diff --git a/src/pages/index.astro b/src/pages/index.astro index 0b1cc56..ee352fd 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -10,7 +10,6 @@ import BaseLayout from "../layouts/BaseLayout.astro"; import SectionHeading from "../components/SectionHeading.astro"; import PostCard from "../components/PostCard.astro"; import SubtleLink from "../components/SubtleLink.astro"; -import ArrowUpRightIcon from "../components/ArrowUpRightIcon.astro"; import "../styles/base.css"; --- @@ -20,7 +19,7 @@ import "../styles/base.css"; -
+

I'm Gui, a Frontend Engineer focused on crafting polished and user-first @@ -39,7 +38,7 @@ import "../styles/base.css";

-
+

@@ -64,7 +63,7 @@ import "../styles/base.css";

-
+
    { @@ -82,7 +81,7 @@ import "../styles/base.css";
-
+
    { diff --git a/src/pages/talks.astro b/src/pages/talks.astro index a75c85f..b54dc0c 100644 --- a/src/pages/talks.astro +++ b/src/pages/talks.astro @@ -12,7 +12,7 @@ import { SITE_DESCRIPTION, talksSortedByPubDate } from "../consts"; -
    +
      { diff --git a/src/pages/writing.astro b/src/pages/writing.astro index b7ac7f9..86d3e6b 100644 --- a/src/pages/writing.astro +++ b/src/pages/writing.astro @@ -12,7 +12,7 @@ import { SITE_DESCRIPTION, postsSortedByPubDate } from "../consts"; -
      +
        {