-
Notifications
You must be signed in to change notification settings - Fork 0
feat: update "Quick Start" & "use Cases" page #18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
… and UseCaseCard components
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR refactors the documentation site by replacing custom HTML/CSS card layouts with reusable Vue components. The change introduces a component-based architecture for displaying project starters, sandboxes, and use cases across the documentation.
- Replaced inline HTML card structures with reusable
UseCaseCard
,ProjectCard
, andCardGrid
components - Added shared component library including
Badge
,Button
, andActionButton
components - Updated styling system with Tailwind CSS theme variables for consistent design tokens
Reviewed Changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated 4 comments.
Show a summary per file
File | Description |
---|---|
src/overview/use-cases.md | Replaced custom HTML cards with UseCaseCard component for demo showcases |
src/overview/quick-start.md | Converted starter templates and sandbox sections to use ProjectCard and CardGrid components |
src/manage-data/dataProtector/getting-started.md | Updated sandbox section to use new card components |
src/components/ui/Button.vue | Enhanced button component with variant support and improved styling |
src/components/UseCaseCard.vue | New component for displaying use case demos with image, features, and actions |
src/components/ProjectCard.vue | New component for project starters and sandboxes with status badges |
src/components/CardGrid.vue | Simple grid container component for responsive card layouts |
src/components/Badge.vue | New badge component with multiple variants and icon support |
src/components/ActionButton.vue | New action button component with primary/disabled states |
.vitepress/theme/style.css | Added Tailwind CSS theme configuration with design token mappings |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good job
No description provided.