import Link from "next/link"; import { SITE, services, cases, testimonials, } from "./content"; import SiteHeader from "./components/SiteHeader"; import Hero from "./components/Hero"; import VelocityMarquee from "./components/VelocityMarquee"; import Reveal, { RevealItem } from "./components/Reveal"; import Scoreboard from "./components/Scoreboard"; import CaseCard, { type CaseData } from "./components/CaseCard"; import ProcessLoop from "./components/ProcessLoop"; import Faq from "./components/Faq"; import Magnetic from "./components/Magnetic"; const TAPE = [ "Revenue, not vanity metrics", "Paid", "SEO", "Content", "Social", "+52% ROAS", "+217% demos", "+128 booked/mo", "Reported every month", ]; const INDUSTRIES = [ "E-commerce", "B2B SaaS", "Clinics", "Professional services", "DTC brands", "Marketplaces", ]; export default function Page() { return ( <>
{/* ===== KINETIC TAPE — scroll-velocity marquee ===== */}
{/* ===== POSITIONING / MANIFESTO ===== */}
The problem with most agencies Most budgets buy activity, not outcomes. Dashboards fill 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.
{/* ===== INDUSTRIES / SOCIAL PROOF ===== */}

Trusted by teams that care about the sales number

{INDUSTRIES.map((p) => ( {p} ))}
{/* ===== SERVICES — interactive ledger ===== */}

Services / 06

How we grow your business

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

{s.name}

{s.desc}

))}
{/* ===== METRICS scoreboard (animated SVG bars + count-ups) ===== */} {/* ===== CASE STUDIES — 3D tilt + coded charts ===== */}

Selected work — sample

Proof, not promises

{cases.map((c, i) => ( ))}
{/* ===== PROCESS — pinned scroll + morphing SVG ===== */} {/* ===== TESTIMONIALS ===== */}
{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 ===== */} ); }