Skip to content
Merged
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ WaveKat builds open-source, AI-powered solutions that put enterprise-grade capab
## Tech Stack

- **Framework**: [Astro](https://astro.build) (static output)
- **Icons**: [Lucide](https://lucide.dev) via `@lucide/astro`
- **Styles**: [Tailwind CSS](https://tailwindcss.com)
- **Deployment**: [Cloudflare Pages](https://pages.cloudflare.com)

Expand Down
10 changes: 10 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 @@ -15,6 +15,7 @@
"astro": "astro"
},
"dependencies": {
"@lucide/astro": "^1.7.0",
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/vite": "^4.2.2",
"astro": "^6.1.1",
Expand Down
19 changes: 18 additions & 1 deletion src/pages/index.astro
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
---
import { execSync } from 'child_process';
import Base from '../layouts/Base.astro';
import { Mail } from '@lucide/astro';
import { version } from '../../package.json';

let siteVersion: string;
Expand Down Expand Up @@ -125,8 +126,24 @@ const libraries = [
<svg class="w-5 h-5" fill="currentColor" viewBox="0 0 24 24" aria-hidden="true"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 01-2.063-2.065 2.064 2.064 0 112.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"></path></svg>
<span class="sr-only">LinkedIn</span>
</a>
<a
href="mailto:eason@wavekat.com"
title="Email us"
class="hover:text-gray-600 dark:hover:text-gray-400 transition-colors"
>
<Mail class="w-5 h-5" />
<span class="sr-only">Email us</span>
</a>
</div>
<span>{siteVersion}</span>
<a
href="https://github.com/wavekat/wavekat.com"
target="_blank"
rel="noopener noreferrer"
title="View source on GitHub"
class="hover:text-gray-600 dark:hover:text-gray-400 transition-colors"
>
{siteVersion}
</a>
<span>Apache 2.0</span>
</footer>

Expand Down
Loading