Founder review pass on the landing page, plus commit the landing-page research/spec docs under features/lp. Branding & assets: - New PCBJam mark: convert the jam-jar image to favicon.svg (trimmed, rounded tile) and use it in the browser tab, header, and footer. - Footer "Built by": flower mark + "Emergence Engineering" in white Oswald (the blog's title font, self-hosted via @fontsource) so it's legible on dark. - Produce the positioning quadrant graphic (public/graphics) and drop the placeholder. Copy / accuracy: - Remove header GitHub link; point "Built by EE" + footer "About" to emergence-engineering.com; Built-by CTA -> mailto:contact@emergence-engineering.com. - Replace the wrong testimonial with Greg Detre's real quote from EE's site. - Drop blog icons from Multiplayer/Pillars/How-it-works; add "Coming soon" to live-cursors & pin-comment; drop the hard-coded Yjs mention. - Rework monetization to free+local / paid cloud-sync; remove "no metered AI", "no per-seat toll", and the Flux price claim; soften the AI section. - Reframe waitlist copy (incl. confirmation email) to newsletter + early access. Fixes: - Offset only #waitlist for the sticky header (scroll-margin-top); section anchors keep their original behavior. Docs: - Commit features/lp (copy spec, brand guide, competitive research) via force-add over the /features/ gitignore. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
35 lines
1.1 KiB
Text
35 lines
1.1 KiB
Text
---
|
|
import SectionBand from '../components/SectionBand.astro';
|
|
---
|
|
|
|
<SectionBand labelledby="pos-h3">
|
|
<div class="section-head">
|
|
<h3 id="pos-h3">Everyone picks two. We do all three.</h3>
|
|
<p class="lead">
|
|
Browser-native. Open & yours. Truly multiplayer. Flux is browser + collab but closed.
|
|
KiCanvas is browser + open but read-only. LibrePCB is open + full but desktop-only.
|
|
<strong>PCBJam is the only one in the middle.</strong>
|
|
</p>
|
|
</div>
|
|
<img
|
|
class="pos-map"
|
|
src="/graphics/positioning-quadrant.svg"
|
|
width="820"
|
|
height="600"
|
|
alt="Positioning map: PCBJam is the only PCB tool that is browser-native, open, and truly real-time multiplayer. Flux and EasyEDA are browser-based but proprietary; KiCanvas is browser and open but viewer-only; LibrePCB and KiCad are open but desktop-only; Altium 365 and OrCAD X are desktop and proprietary."
|
|
loading="lazy"
|
|
decoding="async"
|
|
/>
|
|
</SectionBand>
|
|
|
|
<style>
|
|
.pos-map {
|
|
display: block;
|
|
width: 100%;
|
|
max-width: 46rem;
|
|
height: auto;
|
|
margin-inline: auto;
|
|
border: 1px solid var(--border);
|
|
border-radius: var(--radius-lg);
|
|
}
|
|
</style>
|