Skip to content

Commit e91e363

Browse files
committed
chore: Release v0.13.0
1 parent 35cba09 commit e91e363

File tree

3 files changed

+42
-4
lines changed

3 files changed

+42
-4
lines changed

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors = [ "PlumJam <git@plumj.am" ]
1010
edition = "2024"
1111
license = "MIT"
1212
repository = "https://github.com/plumj-am/plumj.am"
13-
version = "0.12.1"
13+
version = "0.13.0"
1414

1515
[workspace.lints.clippy]
1616
allow_attributes_without_reason = "allow"

STATE.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Project State
2+
3+
## Current Task
4+
Creating a projects.rs component for the normal/ version of the website that displays ALL projects in a grid layout.
5+
6+
## Analysis Completed
7+
- Examined normal/home.rs to understand current project display style
8+
- Found that projects are currently displayed with:
9+
- Border styling: `border border-fg p-4`
10+
- Hover effects: `hover:bg-[var(--color-purple-light)] transition-scale hover:scale-110 duration-100`
11+
- Project info includes: name, type, short description, tech used, and links (GitHub/site)
12+
- Currently shows only 6 projects with `.take(6)`
13+
14+
## Data Structure
15+
- Projects imported from `common::data::PROJECTS`
16+
- Each project has: name, project_type, short_desc, tech_used_str(), github_url(), site_url
17+
18+
## Completed Tasks
19+
- Examined common/data.rs - found PROJECTS array with 15 total projects
20+
- Created normal/projects.rs with:
21+
- Grid layout: `grid-cols-1 md:grid-cols-2 lg:grid-cols-3`
22+
- Displays ALL projects (no .take(6) limitation)
23+
- Same styling as home.rs Projects component
24+
- Responsive design for different screen sizes
25+
- Shows project count in header: "All Projects ({PROJECTS.len()})"
26+
27+
## Component Features
28+
- Uses same project card styling from home.rs
29+
- Same hover effects and transitions
30+
- Shows all project information: name, type, description, tech stack, and links
31+
- Responsive grid that adapts from 1 column on mobile to 3 columns on desktop
32+
33+
## Integration Completed
34+
- Added `mod projects;` to normal/main.rs:5
35+
- Added `use projects::Projects as ProjectsPage;` to imports in normal/main.rs:10
36+
- Updated the placeholder Projects route component to use `ProjectsPage {}`
37+
- Verified compilation with `cargo check` - all tests pass
38+
- Component is now accessible at `/projects` route

0 commit comments

Comments
 (0)