import { createFileRoute, Link } from "@tanstack/react-router"; export const Route = createFileRoute("/")({ head: () => ({ meta: [ { title: "89 Motions — Global Creative & Design Solutions" }, { name: "description", content: "We engineer impactful design built to move your business forward — high-performance web, strategic graphic design, and custom manufactured signage." }, { property: "og:title", content: "89 Motions — Global Creative & Design Solutions" }, { property: "og:description", content: "High-performance web, strategic graphic design, and custom manufactured signage for ambitious brands worldwide." }, { property: "og:url", content: "/" }, ], links: [{ rel: "canonical", href: "/" }], }), component: Home, }); const SKILLS_LEFT = [ ["Branding & Visual Identity", 95], ["Web Design & Front-End", 90], ["Graphic Design", 92], ["Social & Online Advertising", 85], ] as const; const SKILLS_RIGHT = [ ["Signage Design & Manufacturing", 95], ["SolidWorks 3D CAD & Modeling", 95], ["Client Communication", 90], ["Costing, Estimating & Bids", 65], ] as const; const SERVICES = [ { n: "01", t: "Web Design & Hosting", d: "Secure, cloud-hosted architectures paired with premium interfaces optimized for scale." }, { n: "02", t: "Graphic Design", d: "Logos, corporate identity systems and brand literature engineered to cut through noise." }, { n: "03", t: "3D CAD & Signage Architecture", d: "SolidWorks spatial mockups with precise material costing and fabrication planning." }, { n: "04", t: "Performance Marketing", d: "Growth funnels targeted precisely to high-value audience cohorts across markets." }, ]; const MARQUEE = [ "Web Development", "SolidWorks", "Signage Fabrication", "Brand Systems", "3D Rendering", "Print & Digital", "Vehicle Wraps", "LED Backlit", "Corporate Identity", "Performance Ads", ]; function Home() { return ( <> {/* HERO */}
Global Studio · Est. 89

Impactful design,{" "} engineered{" "} to move your business forward.

From high-performance web development to strategic graphic design and custom-manufactured signage — we build visual assets tailored to drive revenue, at any scale, in any market.

Get a free quote → View our work
{/* Marquee */}
{[...MARQUEE, ...MARQUEE].map((m, i) => ( {m} ))}
{/* WHO WE ARE */}

Who we are

Digital strategy meets tangible, physical branding.

89 Motions bridges the gap between digital strategy and tangible physical branding on an international scale.

High-performing websites and digital campaigns designed to scale commercial operations. Precision-made physical branding and high-impact custom signage setups.

Whether you need a digital presence that captures high-value leads or storefront branding that commands attention — we engineer assets tailored to drive maximum revenue.

{/* SKILLS */}

Proficiencies

A multi-disciplinary execution toolkit.

Covering creative direction, front-end development, industrial project estimation, and fabrication oversight.

{[...SKILLS_LEFT, ...SKILLS_RIGHT].map(([label, pct]) => ( ))}
{/* SERVICES OVERVIEW */}

Core capabilities

End-to-end design, one accountable studio.

All services →
{SERVICES.map((s) => (
{s.n}

{s.t}

{s.d}

))}
{/* CTA */}

Ready when you are

Let's move your brand — physically and digitally.

Start a project info@89motions.co.za
); } function StatCard({ k, v }: { k: string; v: string }) { return (
{k}
{v}
); } function FeatureBlock({ title, children }: { title: string; children: React.ReactNode }) { return (

{title}

{children}

); } function SkillBar({ label, pct }: { label: string; pct: number }) { return (
{label} {pct}%
); }