--- title: Add your company logo order: 3 status: published summary: Personalize the React Bricks Content Editor by adding your company logo. estimatedTime: 1 min keywords: personalize customize logo company brand --- ## Add your logo Let's personalize the React Bricks Content Editor by adding your company logo. The process is straightforward: just provide your logo URL in the React Bricks configuration. ## Update the configuration Add the `logo` property to your React Bricks config: ```ts title="config.tsx" const config: types.ReactBricksConfig = { // ...other config logo: 'https://your-company.com/assets/logo.svg', // ...other config } ``` ## Tips - Use an SVG for best quality and scalability - Keep the logo simple and horizontal for better fit - Make sure the URL is publicly accessible ## Result That's it! Your logo will now appear in the Content Editor, making the experience feel truly yours.