```jsx
import { PermissionContext } from '@views/Tutorials';

<div style={{ display: 'flex' }}>
  <PermissionContext.Provider value={true}>
    <TutorialCard
      tutorial={{
        backgroundColor: '#edb33e',
        description: 'Use our Quotes API and Fare API to get estimated fares in advance.',
        hero: false,
        emoji: '🦉',
        published: true,
        stepCount: 3,
        title: 'Request a Quote in Advance',
      }}
    />
    <div style={{ width: 20 }} />
    <TutorialCard
      tutorial={{
        backgroundColor: '#edb33e',
        description: 'Use our Quotes API and Fare API to get estimated fares in advance.',
        hero: true,
        emoji: '🦉',
        published: false,
        stepCount: 3,
        title: 'Request a Quote in Advance',
      }}
    />
  </PermissionContext.Provider>
</div>
```
