import Link from "next/link"; import Image from "next/image"; import { SITE, services, metrics, cases, processSteps, testimonials, } from "./content"; import SiteHeader from "./components/SiteHeader"; import RevenueField from "./components/RevenueField"; import KineticHeadline from "./components/KineticHeadline"; import Ticker from "./components/Ticker"; import CountUp from "./components/CountUp"; import Reveal from "./components/Reveal"; import BeforeAfter from "./components/BeforeAfter"; import Faq from "./components/Faq"; const PROOF = [ "E-commerce", "B2B SaaS", "Clinics", "Professional services", "DTC brands", "Marketplaces", ]; const beforeAfter = [ { before: "Flat sales", after: "+52% ROAS" }, { before: "No pipeline", after: "+217% demos" }, { before: "Empty calendar", after: "+128 booked/mo" }, ]; export default function Page() { return ( <>
{/* ========================================================= HERO — the masthead front page ========================================================= */}
{/* dateline / edition strip */}
The Revenue Edition No. 01 Digital marketing agency

Marketing, priced in revenue

Marketing that grows your revenue.

We're a results-driven digital marketing agency. We run paid, SEO, and content programs built around your revenue targets, then show you what they returned. Every month.

Get your growth audit See the results
{/* hero stat slab */}
$40M+ in client revenue generated
50+ brands grown
{/* ========================================================= TICKER — kinetic social proof tape ========================================================= */}
{/* ========================================================= SOCIAL PROOF / industries ========================================================= */}

Trusted by teams that care about the sales number

    {PROOF.map((p) => (
  • {p}
  • ))}
{/* ========================================================= POSITIONING / PROBLEM — the manifesto spread ========================================================= */}

The problem with most agencies

Most budgets buy activity, not outcomes. Dashboards fill up with impressions while the sales number sits still. We started Feedback Studios to fix that. Every campaign we run is built to move revenue, and we report on it the way your CFO would. No vanity metrics. No mystery. Just the number that pays the bills.
{/* ========================================================= SERVICES — the index / ledger ========================================================= */}

Services / 06

How we grow your business

    {services.map((s, i) => (
  1. {String(i + 1).padStart(2, "0")}

    {s.name}

    {s.desc}

  2. ))}
{/* ========================================================= METRICS — count-up scoreboard (inverted) ========================================================= */}

The scoreboard — sample data

Numbers we report on

{metrics.map((m) => (
{m.label}
))}
{/* ========================================================= CASE STUDIES — proof spreads w/ before/after sliders ========================================================= */}

Selected work — sample

Proof, not promises

{cases.map((c, i) => (
{String(i + 1).padStart(2, "0")} {c.tag}

Before: {c.problem}

{c.result}

{c.how}

{/* optional brand asset, lazy + sized to avoid CLS */} {c.alt}
{c.metricNum} {c.metricLabel}
))}
View all work
{/* ========================================================= PROCESS — The Feedback Loop ========================================================= */}

The Feedback Loop

How it works

    {processSteps.map((p) => (
  1. {p.n}

    {p.name}

    {p.desc}

  2. ))}
{/* ========================================================= TESTIMONIALS — pull quotes ========================================================= */}
{testimonials.map((t, i) => (
“{t.quote}”
))}

Partners

  • Google Partner
  • Meta Business Partner
{/* ========================================================= FAQ ========================================================= */}

FAQ

Questions about working with a digital marketing agency

{/* ========================================================= FINAL CTA ========================================================= */}

The bottom line

Ready to grow?

No long contracts. No vanity reports. Marketing you can measure in sales.

Book a call or {SITE.email}
{/* ========================================================= FOOTER — the colophon ========================================================= */} ); }