DEV Community

Cover image for Personalizing Landing Page
Wiz Lee
Wiz Lee

Posted on

2 1

Personalizing Landing Page

The cover image above shows the gatsby-starter-mate working locally on my PC. The landing page customization is done by setting up my own Contentful CMS account.

Learn about Rebass (a react primitive UI components built with Styled System) when trying to make the React TextLoop component to work properly. I was not able to make the text inside of the TextLoop component to wrap around to the next line. The solution is to set the noWrap props of the component to false.

Another great learning when working using Rebass is responsive styles, specifically on how array props works. The syntax of using array [] to represent media query breakpoints needs some getting used to, but once I did it looks so clean and sweet 🍬!

Next post - deploying using Netlify.

Top comments (0)

Playwright CLI Flags Tutorial

5 Playwright CLI Flags That Will Transform Your Testing Workflow

  • --last-failed: Zero in on just the tests that failed in your previous run
  • --only-changed: Test only the spec files you've modified in git
  • --repeat-each: Run tests multiple times to catch flaky behavior before it reaches production
  • --forbid-only: Prevent accidental test.only commits from breaking your CI pipeline
  • --ui --headed --workers 1: Debug visually with browser windows and sequential test execution

Learn how these powerful command-line options can save you time, strengthen your test suite, and streamline your Playwright testing experience. Practical examples included!

Watch Video πŸ“ΉοΈ