mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-24 13:54:31 +00:00
Major additions: - Complete Next.js studio application with 1600+ components - Docker support (Dockerfile.combined, docker-compose.yml) - GCP deployment documentation and benchmarks - SQL benchmark scripts for performance testing - Sentry integration for monitoring - Comprehensive test suite and mocks Studio features: - Dashboard and admin interfaces - Data visualization components - Authentication and user management - API integration with RuVector backend - Static data and public assets 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> |
||
|---|---|---|
| .. | ||
| account | ||
| api | ||
| cli | ||
| integrations | ||
| new | ||
| org | ||
| project | ||
| support | ||
| 404.tsx | ||
| 500.tsx | ||
| _app.tsx | ||
| _document.tsx | ||
| _error.jsx | ||
| authorize.tsx | ||
| aws-marketplace-onboarding.tsx | ||
| claim-project.tsx | ||
| forgot-password-mfa.tsx | ||
| forgot-password.tsx | ||
| join.tsx | ||
| logout.tsx | ||
| maintenance.tsx | ||
| organizations.tsx | ||
| README.md | ||
| reset-password.tsx | ||
| sign-in-fly-tos.tsx | ||
| sign-in-mfa.tsx | ||
| sign-in-partner.tsx | ||
| sign-in-sso.tsx | ||
| sign-in.tsx | ||
| sign-up.tsx | ||
Writing pages
Rough guidelines
- Try to break down your pages into smaller building blocks - components which are tightly coupled to a page can be placed within the folder
components/interfaces/xxx/...(Refer to the README.md under the components folder) - Keep to using
useStatehooks for any UI related logic, do not create MobX local stores to handle UI logic.
Template for building pages
import { NextPage } from 'next'
import { withAuth } from 'hooks/misc/withAuth'
// Import the corresponding layout based on the page
import { Layout } from 'components/layouts'
// Import the main building blocks of the page
import { ... } from 'components/interfaces/xxx'
// Import reusable UI components if needed
import { ... } from 'components/ui/xxx'
// Name your page accordingly
const Page: NextPage = () => {
return (
<Layout>
<div>Page content</div>
</Layout>
)
}
export default withAuth(Page)