Skip to content

Commit 977d021

Browse files
committed
Merge commit 'd32a076'
2 parents ab8a594 + d32a076 commit 977d021

2 files changed

Lines changed: 14 additions & 9 deletions

File tree

src/components/LandingPage.css

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -559,17 +559,22 @@
559559
align-items: start;
560560
}
561561

562+
.landing-section__heading--about {
563+
display: flex;
564+
align-items: end;
565+
justify-content: space-between;
566+
}
567+
562568
.landing-stage-badge {
563-
display: inline-block;
564569
font-family: 'IBM Plex Mono', monospace;
565-
font-size: 0.74rem;
570+
font-size: 0.66rem;
566571
letter-spacing: 0.08em;
567572
text-transform: uppercase;
568-
color: #efc889;
569-
padding: 8px 14px;
570-
border: 1px solid rgba(239, 200, 137, 0.2);
571-
background: rgba(239, 200, 137, 0.06);
572-
margin-top: 4px;
573+
color: #6a8199;
574+
padding: 6px 10px;
575+
border: 1px solid rgba(255, 255, 255, 0.08);
576+
margin-bottom: 20px;
577+
flex-shrink: 0;
573578
}
574579

575580
.landing-about-statement p {

src/components/LandingPage.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -390,11 +390,12 @@ export const LandingPage: React.FC<LandingPageProps> = ({ onLaunchDemo }) => {
390390

391391
{/* About */}
392392
<section id="about" className="landing-section">
393-
<div className="landing-section__heading">
393+
<div className="landing-section__heading landing-section__heading--about">
394394
<div>
395395
<p className="landing-section__label">Behind the project</p>
396396
<h2>Collin Civish</h2>
397397
</div>
398+
<span className="landing-stage-badge">Research prototype</span>
398399
</div>
399400

400401
<div className="landing-about-layout">
@@ -407,7 +408,6 @@ export const LandingPage: React.FC<LandingPageProps> = ({ onLaunchDemo }) => {
407408
<p>
408409
Seeking resources to take it from prototype to production.
409410
</p>
410-
<p className="landing-stage-badge">Current stage: Research prototype — validated, demo-ready</p>
411411
<div className="landing-actions">
412412
<button className="landing-button landing-button--primary" onClick={onLaunchDemo}>
413413
Open Demo

0 commit comments

Comments
 (0)