Skip to content

Commit 5af89b3

Browse files
committed
Better hub page
1 parent 69c8070 commit 5af89b3

File tree

17 files changed

+214
-163
lines changed

17 files changed

+214
-163
lines changed

media/robot_jam.png

339 KB
Loading

media/robot_jam.svg

Lines changed: 1 addition & 0 deletions
Loading

src/_layouts/base.njk

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,11 +215,15 @@
215215
font-weight: bold;
216216
}
217217
218-
/* Hide arrow animation on contact page */
219-
.page-contact .hero::before {
218+
/* Only show arrow animation on homepage */
219+
.hero::before {
220220
display: none;
221221
}
222222
223+
.page-home .hero::before {
224+
display: block;
225+
}
226+
223227
@keyframes slideGroove {
224228
0% { left: -100px; }
225229
100% { left: calc(100% - 180px); }
@@ -630,7 +634,7 @@
630634
}
631635
</style>
632636
</head>
633-
<body{% if title == 'Contact' %} class="page-contact"{% endif %}>
637+
<body{% if page.url == '/' %} class="page-home"{% elif title == 'Contact' %} class="page-contact"{% endif %}>
634638
<header>
635639
<div class="container">
636640
<div class="site-title">codeGROOVE</div>

src/css/main.css

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -507,6 +507,38 @@ a:hover {
507507
line-height: 1.7;
508508
}
509509

510+
/* Consistent Product Page Card Styles */
511+
.card-subtle {
512+
background: #FAFAFA;
513+
border-radius: 12px;
514+
padding: 32px;
515+
}
516+
517+
.card-subtle-small {
518+
background: #FAFAFA;
519+
border-radius: 12px;
520+
padding: 24px;
521+
}
522+
523+
.card-emphasis {
524+
background: linear-gradient(135deg, rgba(255,215,0,0.08) 0%, rgba(255,255,255,0.02) 100%);
525+
border-radius: 12px;
526+
padding: 48px;
527+
}
528+
529+
.card-emphasis-strong {
530+
background: linear-gradient(135deg, rgba(255,215,0,0.12) 0%, rgba(255,255,255,0.04) 100%);
531+
border-radius: 12px;
532+
padding: 48px;
533+
}
534+
535+
.card-image {
536+
width: 100%;
537+
height: auto;
538+
border-radius: 8px;
539+
margin-bottom: 24px;
540+
}
541+
510542
.card::before {
511543
content: '';
512544
position: absolute;

src/media/robot_jam.png

339 KB
Loading
208 KB
Loading
385 KB
Loading

src/media/screenshots/goose.png

736 KB
Loading

src/media/screenshots/r2r-800.png

121 KB
Loading

src/media/screenshots/r2r.png

566 KB
Loading

0 commit comments

Comments
 (0)