From 9cded54ce3c5cc06abbeb2d85da07ffe7f7c591d Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Sat, 25 Apr 2026 02:37:17 +0200 Subject: [PATCH] feat(homepage): wire SocialProofStrip + ThreeAmWalkthrough MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updates the homepage section order to the proof-first arc: Hero → SocialProofStrip → ThreeAmWalkthrough → HowItWorks → WhyUs → PricingTeaser → FinalCTA The retired DualValueProps and ProductShowcase imports are dropped here; the unused .astro files themselves are deleted in Task 11. Page + <meta description> updated to lead with the new H1. Verified: dist/index.html contains the #walkthrough anchor target. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com> --- src/pages/index.astro | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/pages/index.astro b/src/pages/index.astro index e74a383..dfecb9a 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -3,22 +3,22 @@ import BaseLayout from '../layouts/BaseLayout.astro'; import SiteHeader from '../components/SiteHeader.astro'; import SiteFooter from '../components/SiteFooter.astro'; import Hero from '../components/sections/Hero.astro'; -import DualValueProps from '../components/sections/DualValueProps.astro'; -import ProductShowcase from '../components/sections/ProductShowcase.astro'; +import SocialProofStrip from '../components/sections/SocialProofStrip.astro'; +import ThreeAmWalkthrough from '../components/sections/ThreeAmWalkthrough.astro'; import HowItWorks from '../components/sections/HowItWorks.astro'; import WhyUs from '../components/sections/WhyUs.astro'; import PricingTeaser from '../components/sections/PricingTeaser.astro'; import FinalCTA from '../components/sections/FinalCTA.astro'; --- <BaseLayout - title="Cameleer — Run Apache Camel without running Apache Camel" - description="The hosted home for your Camel integrations — with deep tracing, replay, and live control built in. Because you chose Camel to stay free, not to stay up all night." + title="Cameleer — Ship Camel integrations. Sleep through the night." + description="The hosted runtime and observability platform for Apache Camel. Auto-traced, replay-ready, cross-service correlated — so the 3 AM page becomes a 30-second answer." > <SiteHeader /> <main> <Hero /> - <DualValueProps /> - <ProductShowcase /> + <SocialProofStrip /> + <ThreeAmWalkthrough /> <HowItWorks /> <WhyUs /> <PricingTeaser />