feat: overhaul landing page with demo gallery, preview mockup, and fix links

- Add 'Featured Examples' section with 6 popular repos (express, flask, zod, etc.)
- Add browser window mockup in hero showing what generated docs look like
- Fix all links: company.repi.fun → vectry.tech, github.com → gitea.repi.fun
- Update stats: ~3 min generation, 10+ languages supported
- New ExampleRepos client component with generate-on-click functionality
This commit is contained in:
Vectry
2026-02-09 17:14:56 +00:00
parent f4ed838f77
commit 327e19df8f
5 changed files with 337 additions and 51 deletions

View File

@@ -207,6 +207,29 @@ body {
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.line-clamp-2 {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.bg-blue-500\/60 {
background-color: rgba(59, 130, 246, 0.6);
}
.bg-purple-500\/60 {
background-color: rgba(168, 85, 247, 0.6);
}
.bg-green-500\/60 {
background-color: rgba(34, 197, 94, 0.6);
}
.bg-orange-500\/60 {
background-color: rgba(249, 115, 22, 0.6);
}
.scrollbar-thin {
scrollbar-width: thin;
scrollbar-color: rgba(255, 255, 255, 0.2) transparent;