Studio Services Page

What we do

Three ways to work with us, and one of them is free.

Identity, the campaign that launches it, and the site that carries both. Everything below has a price, a lead time and a named person against it.

Start a project
Cinematographer framing a shot under warm studio lights
How we think

The brief is never the problem. It is the symptom.

Half of what we are hired to fix turns out to be a decision nobody has made yet. We would rather spend week one finding that than month three discovering it.

Polaris studio team gathered around a workspace
(01)

Argue early, at the cheapest moment

Everything is negotiable in week one and expensive in week nine. We front-load the disagreement on purpose.

(02)

Draw it before describing it

A strategy nobody can picture is a strategy nobody will follow. We bring pictures to the second meeting, not a deck.

(03)

Design for the worst case

The bad photograph, the long name, the sponsor lockup nobody planned for. If it holds there, it holds everywhere.

(04)

Hand over rules, not files

The work has to keep working after we leave. That means a system your team can run without calling us.

Nine weeks, and you know who owns each of them.

How it runs
1

Take the brief apart

A week with whoever wrote it. We come back with the problem restated, and often it is not the one on the page.

Week 1Lead: Founder and strategist
2

Two routes, drawn far apart

Not three variations of one idea. Two genuinely different answers, so choosing between them is a decision rather than a preference.

Weeks 2 to 4Lead: Creative director
3

One route, made real

The chosen direction becomes rules, files and the awkward cases. This is the longest stretch and the quietest one.

Weeks 5 to 8Lead: Design lead
4

Handover and the month after

We train the team that will run it and stay reachable while they do. The gap between a guideline and a working team is always wider than the guideline admits.

Week 9, then 30 daysLead: The whole team
Engagements

Two ways in, priced before the call.

Most projects

Fixed engagement

€38,000from, per project

One brief, one team, one date. Scope agreed in writing before a day of work happens, and anything outside it quoted before it starts.

  • Nine weeks from kickoff to handover
  • Two directions, one built out in full
  • Brand system, files and written rules
  • Thirty days of support after launch
  • The people you met run the work
For teams already moving

Studio retainer

€9,000a month, three-month minimum

A standing half of the studio for teams that ship continuously. Unused days do not roll, because a retainer that banks hours stops being a retainer.

  • Six studio days a month, yours to direct
  • A named lead who stays for the term
  • Fortnightly review in your own calendar
  • First call on the next opening
  • Cancel with thirty days, no exit fee
Before you ask

The questions that decide whether this is a fit.

A ninety-minute session where we take your brief apart with you and hand back the problem restated. No deck, no invoice, and no obligation. We do about one a fortnight and roughly half never become projects.

Creative team collaborating in a sunlit studio space
Next step

Bring us the brief you have not finished writing.

A paragraph about what is actually wrong is enough to tell us whether we are the right studio. A partner answers within two working days, including the noes.

About this page

Studio Services PagePRO

A services page that prices the work in the fold: a reel hero, four principles beside a studio photograph, a nine-week timeline with an owner on every stage, two engagement plans, a two-column FAQ, a contact panel and a CTA footer.

Composed from 8 blocks. Installing this page installs all of them, plus the pieces and primitives they use.

Built in the Polaris collection.

Services1: Studio Services Page

A services page that prices the work in the fold: a reel hero, four principles beside a studio photograph, a nine-week timeline with an owner on every stage, two engagement plans, a two-column FAQ, a contact panel, and a CTA footer. Eight blocks, one install.

Upgrade to Pro

Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.

Upgrade Now

Installation

Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.

bash
npx shadcn add "https://ui.beste.co/page/r/services1?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the page to components/beste/page/services1.tsx and everything behind it: the eight blocks it composes (navbar47, hero113, agency13, workflow36, pricing63, faq70, cta67, footer103), the button1 and badge6 components they use, and the shadcn/ui button primitive. Eleven files, no follow-up installs.

Quick start

The installed file exports services1Demo alongside the page: the exact props behind the preview above. Spread it to get a working page in one line.

tsx
import { Services1, services1Demo } from "@/components/beste/page/services1";

export default function Page() {
  return <Services1 {...services1Demo} />;
}

Each section is a separate prop, so the usual next step is to keep the demo and replace one section at a time.

tsx
import { Services1, services1Demo } from "@/components/beste/page/services1";

export default function Page() {
  return (
    <Services1
      {...services1Demo}
      plans={{
        label: "Engagements",
        heading: "Two ways to work with us.",
        plans: [
          { name: "Project", price: "From €40,000", description: "Fixed scope, fixed figure, nine weeks." },
          { name: "Retained", price: "€9,000 a month", description: "Two days a week, minimum three months." },
        ],
      }}
    />
  );
}

Props

Every prop is the full prop object of the block that renders that section, so anything the block accepts is accepted here.

PropTypeDefaultDescription
navbarComponentProps<typeof Navbar47>Studio navbar
heroComponentProps<typeof Hero113>Reel hero
approachComponentProps<typeof Agency13>Four principles beside a photograph
processComponentProps<typeof Workflow36>Nine-week timeline, an owner per stage
plansComponentProps<typeof Pricing63>Two engagement plans
faqComponentProps<typeof Faq70>Two-column FAQ
ctaComponentProps<typeof Cta67>Contact panel
footerComponentProps<typeof Footer103>Footer leading with a CTA
classNamestringExtra classes for the page's outer wrapper

Sections

SectionBlockNotes
Navbarnavbar47Sticky for the whole document
Herohero113A reel, so the work moves before any copy is read
Approachagency13Four principles; the count matches the layout
Processworkflow36Given bg-muted/50; every stage names an owner
Planspricing63Prices in the page rather than behind a call
Questionsfaq70Also given bg-muted/50, pairing it with the process band
Contactcta67The panel that ends the argument
Footerfooter103Opens with a CTA of its own

Behavior notes

  • Every section is conditional on its own prop, so omitting plans removes that section entirely rather than rendering an empty one. The page is built so the price is visible without a conversation, which is the reason plans sits above the FAQ rather than below it.
  • The navbar is given sticky top-0 z-50 by the page, which works because the block carries its own opaque band.
  • The page sets className="bg-muted/50" on both the process and FAQ sections after spreading their props, so a className passed inside those props is overridden.
  • There is no dark band on this page. The reel hero is already the loudest thing on it, and an inverted section further down would fight it rather than close the page.
  • agency13 lays out four principles; passing three leaves a hole in the row, and passing five wraps one onto its own line.
  • The whole page is a client component, since the blocks it composes are. It fetches nothing and holds no state above the blocks.
  • The page is Pro because blocks inside it are, which is why the licence parameters are on the command above.

Blocks in this page

Browse all blocks
PRO

navbar47

Mega Menu Navbar

Studio navbar whose Work item opens a full-width mega panel with category links and three featured project thumbnails.

PRO

hero113

Statement Reel Hero

Centered big-type studio hero with start and watch-the-film actions over a cinematic banner.

PRO

agency13

How We Think

Sticky studio intro with a portrait beside a stack of numbered principles.

PRO

workflow36

Process Timeline

A single-rail vertical process timeline with numbered nodes and per-step duration and owner meta.

PRO

pricing63

Two Engagement Plans

Two large contrasting plan panels (light vs dark) for engagement models.

PRO

faq70

Two-Column FAQ

FAQ accordion split into two independent columns.

PRO

cta67

Image CTA

Cinematic full-bleed image CTA with an overlaid content panel.

PRO

footer103

CTA Footer

Dark closing-CTA footer with a big statement, email and compact links.