Add portfolio template to combined marketing+portfolio template

- Added portfolio pages: portfolio-index, portfolio-about, portfolio-contact
- Added work/[slug].astro for project detail pages
- Added PortfolioBase.astro layout with Playfair Display font
- Added ProjectCard.astro component
- Added projects collection with taxonomies (category, tag)
- Updated theme.css with --font-serif variable
- Added portfolio seed data with 4 projects
- Updated menus to include Work link
This commit is contained in:
Kunthawat Greethong
2026-05-01 13:22:24 +07:00
parent 9147821a16
commit 978bf42e5a
19 changed files with 8804 additions and 7 deletions

4
.astro/fonts.d.ts vendored Normal file
View File

@@ -0,0 +1,4 @@
declare module 'astro:assets' {
/** @internal */
export type CssVariable = (["--font-emdash"])[number];
}