feat(ui): path-based app-router routes with 404 and project auth preview
Resolve routes from pathname (and legacy hash), add a notFound route with a dedicated 404 page, and show a blurred workspace preview for unauthenticated project visits. Wire up Next.js app-router entry files and listen for popstate so history navigation updates the route. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -889,6 +889,357 @@ button:disabled {
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.not-found-shell {
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 48px 24px;
|
||||
color: #101827;
|
||||
background: #fff;
|
||||
}
|
||||
|
||||
.not-found-content {
|
||||
width: min(520px, 100%);
|
||||
display: grid;
|
||||
justify-items: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.not-found-mark {
|
||||
width: min(280px, 72vw);
|
||||
height: auto;
|
||||
margin-bottom: 57px;
|
||||
}
|
||||
|
||||
.not-found-content h1 {
|
||||
margin: 0;
|
||||
color: #111827;
|
||||
font-size: 32px;
|
||||
line-height: 1.25;
|
||||
font-weight: 800;
|
||||
letter-spacing: 0;
|
||||
}
|
||||
|
||||
.not-found-content p {
|
||||
margin: 16px 0 32px;
|
||||
color: #6b7280;
|
||||
font-size: 14px;
|
||||
line-height: 1.5;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.not-found-content button {
|
||||
min-width: 128px;
|
||||
height: 42px;
|
||||
padding: 0 26px;
|
||||
border-radius: 12px;
|
||||
color: #fff;
|
||||
background: #030303;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
line-height: 1;
|
||||
transition: transform 0.16s ease, background 0.16s ease;
|
||||
}
|
||||
|
||||
.not-found-content button:hover {
|
||||
background: #171717;
|
||||
transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.project-auth-shell {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
overflow: hidden;
|
||||
background: #f7f7f4;
|
||||
}
|
||||
|
||||
.project-auth-blur {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
filter: blur(18px);
|
||||
opacity: 0.66;
|
||||
transform: scale(1.04);
|
||||
transform-origin: center;
|
||||
pointer-events: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.project-auth-topbar {
|
||||
height: 48px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 0 14px;
|
||||
border-bottom: 1px solid #eceef1;
|
||||
background: rgba(255, 255, 255, 0.86);
|
||||
}
|
||||
|
||||
.project-auth-title,
|
||||
.project-auth-top-actions,
|
||||
.project-auth-panel-head,
|
||||
.project-auth-toolbar,
|
||||
.project-auth-composer div {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.project-auth-title {
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.project-auth-mark {
|
||||
width: 18px;
|
||||
height: 26px;
|
||||
color: #151515;
|
||||
}
|
||||
|
||||
.project-auth-title span,
|
||||
.project-auth-thread b,
|
||||
.project-auth-thread span,
|
||||
.project-auth-composer span {
|
||||
display: block;
|
||||
border-radius: 999px;
|
||||
background: #e1e3e6;
|
||||
}
|
||||
|
||||
.project-auth-title span {
|
||||
width: 168px;
|
||||
height: 14px;
|
||||
}
|
||||
|
||||
.project-auth-top-actions {
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.project-auth-top-actions i,
|
||||
.project-auth-panel-head i,
|
||||
.project-auth-toolbar i,
|
||||
.project-auth-composer i {
|
||||
display: block;
|
||||
border-radius: 999px;
|
||||
background: #e3e5e8;
|
||||
}
|
||||
|
||||
.project-auth-top-actions i {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
}
|
||||
|
||||
.project-auth-top-actions b {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
display: block;
|
||||
border-radius: 999px;
|
||||
background: #151515;
|
||||
}
|
||||
|
||||
.project-auth-main {
|
||||
height: calc(100vh - 48px);
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) 400px;
|
||||
}
|
||||
|
||||
.project-auth-stage {
|
||||
position: relative;
|
||||
min-width: 0;
|
||||
overflow: hidden;
|
||||
background: #f7f7f4;
|
||||
}
|
||||
|
||||
.project-auth-grid {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background-image:
|
||||
linear-gradient(rgba(38, 45, 57, 0.055) 1px, transparent 1px),
|
||||
linear-gradient(90deg, rgba(38, 45, 57, 0.055) 1px, transparent 1px);
|
||||
background-size: 38px 38px;
|
||||
}
|
||||
|
||||
.project-auth-frame {
|
||||
position: absolute;
|
||||
border: 1px solid rgba(189, 193, 201, 0.9);
|
||||
border-radius: 8px;
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
box-shadow: 0 18px 58px rgba(17, 24, 39, 0.08);
|
||||
}
|
||||
|
||||
.project-auth-frame.primary {
|
||||
left: 18%;
|
||||
top: 20%;
|
||||
width: 260px;
|
||||
height: 180px;
|
||||
}
|
||||
|
||||
.project-auth-frame.secondary {
|
||||
left: 48%;
|
||||
top: 34%;
|
||||
width: 220px;
|
||||
height: 150px;
|
||||
}
|
||||
|
||||
.project-auth-frame.tertiary {
|
||||
left: 31%;
|
||||
top: 58%;
|
||||
width: 180px;
|
||||
height: 118px;
|
||||
}
|
||||
|
||||
.project-auth-toolbar {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
bottom: 28px;
|
||||
gap: 10px;
|
||||
padding: 9px 12px;
|
||||
border: 1px solid #e5e7eb;
|
||||
border-radius: 16px;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
transform: translateX(-50%);
|
||||
box-shadow: 0 18px 48px rgba(17, 24, 39, 0.1);
|
||||
}
|
||||
|
||||
.project-auth-toolbar i {
|
||||
width: 26px;
|
||||
height: 26px;
|
||||
}
|
||||
|
||||
.project-auth-panel {
|
||||
min-width: 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border-left: 1px solid #eceef1;
|
||||
background: rgba(255, 255, 255, 0.88);
|
||||
}
|
||||
|
||||
.project-auth-panel-head {
|
||||
height: 56px;
|
||||
gap: 10px;
|
||||
padding: 0 18px;
|
||||
}
|
||||
|
||||
.project-auth-panel-head span {
|
||||
width: 184px;
|
||||
height: 16px;
|
||||
display: block;
|
||||
margin-right: auto;
|
||||
border-radius: 999px;
|
||||
background: #dfe2e6;
|
||||
}
|
||||
|
||||
.project-auth-panel-head i {
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
}
|
||||
|
||||
.project-auth-thread {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 14px;
|
||||
padding: 28px 22px;
|
||||
}
|
||||
|
||||
.project-auth-thread b {
|
||||
width: 62%;
|
||||
height: 18px;
|
||||
}
|
||||
|
||||
.project-auth-thread span {
|
||||
height: 12px;
|
||||
}
|
||||
|
||||
.project-auth-thread span:nth-child(2) {
|
||||
width: 86%;
|
||||
}
|
||||
|
||||
.project-auth-thread span:nth-child(3) {
|
||||
width: 72%;
|
||||
}
|
||||
|
||||
.project-auth-thread span:nth-child(4) {
|
||||
width: 48%;
|
||||
}
|
||||
|
||||
.project-auth-composer {
|
||||
margin: auto 18px 20px;
|
||||
padding: 18px;
|
||||
border: 1px solid #e3e5e9;
|
||||
border-radius: 18px;
|
||||
background: #fff;
|
||||
box-shadow: 0 20px 60px rgba(17, 24, 39, 0.08);
|
||||
}
|
||||
|
||||
.project-auth-composer span {
|
||||
width: 72%;
|
||||
height: 14px;
|
||||
margin-bottom: 42px;
|
||||
}
|
||||
|
||||
.project-auth-composer div {
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.project-auth-composer i {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
}
|
||||
|
||||
@media (max-width: 760px) {
|
||||
.project-auth-main {
|
||||
grid-template-columns: minmax(0, 1fr);
|
||||
}
|
||||
|
||||
.project-auth-panel {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.project-auth-title span {
|
||||
width: 112px;
|
||||
}
|
||||
|
||||
.project-auth-frame.primary {
|
||||
left: 14%;
|
||||
top: 23%;
|
||||
width: 190px;
|
||||
height: 138px;
|
||||
}
|
||||
|
||||
.project-auth-frame.secondary {
|
||||
left: 42%;
|
||||
top: 48%;
|
||||
width: 150px;
|
||||
height: 108px;
|
||||
}
|
||||
|
||||
.project-auth-frame.tertiary {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.not-found-shell {
|
||||
padding: 44px 22px;
|
||||
}
|
||||
|
||||
.not-found-mark {
|
||||
margin-bottom: 44px;
|
||||
}
|
||||
|
||||
.not-found-content h1 {
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
.not-found-content p {
|
||||
margin: 14px 0 28px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.not-found-content button {
|
||||
min-width: 120px;
|
||||
height: 40px;
|
||||
border-radius: 12px;
|
||||
font-size: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
.workspace-shell {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
|
||||
Reference in New Issue
Block a user