avatarLiviu Damian, July 11, 2020

The new reality

The new "normal"

TODO: provide alt

Coding under COVID-19.

Working from home.

Some tools and skills in demand
import { Alert } from 'react-bootstrap'

export default function PreviewAlert() {
  return (
    <Alert variant="secondary">
      This is the preview mode!{' '}
      {/* DONE: This will lead me to API route that will remove preview cookies */}
      <Alert.Link href="/api/exit-preview">Leave preview mode</Alert.Link>
    </Alert>
  )
}
components/PreviewAlert.js