Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"@astrojs/tailwind": "^5.1.3",
"@astrojs/vercel": "^8.0.0",
"@tailwindcss/typography": "^0.5.19",
"@vercel/speed-insights": "^2.0.0",
"astro": "^5.0.0",
"tailwindcss": "^3.4.0"
}
Expand Down
3 changes: 3 additions & 0 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
---
import SpeedInsights from '@vercel/speed-insights/astro';

interface Props {
title?: string;
description?: string;
Expand Down Expand Up @@ -52,6 +54,7 @@ const {
</head>

<body class="bg-white text-gray-900 font-sans antialiased">
<SpeedInsights />
<nav class="fixed top-0 left-0 right-0 z-50 bg-white/90 backdrop-blur-sm border-b border-gray-100">
<div class="max-w-5xl mx-auto px-6 h-14 flex items-center justify-between">
<a href="/" class="font-semibold text-gray-900 hover:text-brand-600 transition-colors">
Expand Down