- Rewrite about page with Multica name origin (Multics → multiplexed agents) and project philosophy - Replace placeholder changelog with real entries from git history (v0.1.0–v0.1.3) - Add variant prop to LandingHeader (dark/light) so it renders correctly on white-background subpages - Extract landing page into separate component files
26 lines
671 B
TypeScript
26 lines
671 B
TypeScript
"use client";
|
|
|
|
import { LandingHeader } from "./landing-header";
|
|
import { LandingHero } from "./landing-hero";
|
|
import { FeaturesSection } from "./features-section";
|
|
import { HowItWorksSection } from "./how-it-works-section";
|
|
import { OpenSourceSection } from "./open-source-section";
|
|
import { FAQSection } from "./faq-section";
|
|
import { LandingFooter } from "./landing-footer";
|
|
|
|
export function MulticaLanding() {
|
|
return (
|
|
<>
|
|
<div className="relative">
|
|
<LandingHeader />
|
|
<LandingHero />
|
|
</div>
|
|
|
|
<FeaturesSection />
|
|
<HowItWorksSection />
|
|
<OpenSourceSection />
|
|
<FAQSection />
|
|
<LandingFooter />
|
|
</>
|
|
);
|
|
}
|