Fix Activepieces branding with proper logo and text

- Change "Built with" to "Powered by" in ShowPoweredBy component
- Replace purple dot with actual Activepieces swirl logo in SVG
- Update favicon and logoIcon URLs to use SmoothSchedule branding
- Add light and dark mode versions of automation builder logo

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
poduck
2025-12-29 19:50:22 -05:00
parent 47657e7076
commit 9689881ebb
4 changed files with 29 additions and 3 deletions

View File

@@ -23,7 +23,7 @@ const ShowPoweredBy = ({ show, position = 'sticky' }: ShowPoweredByProps) => {
},
)}
>
<div className=" text-sm transition">Built with</div>
<div className=" text-sm transition">Powered by</div>
<div className="justify-center flex items-center gap-1">
<svg
width={15}

View File

@@ -67,6 +67,6 @@ export const defaultTheme = generateTheme({
primaryColor: '#6e41e2',
websiteName: 'Automation Builder',
fullLogoUrl: 'https://smoothschedule.nyc3.digitaloceanspaces.com/static/images/automation-builder-logo-light.svg',
favIconUrl: 'https://cdn.activepieces.com/brand/favicon.ico',
logoIconUrl: 'https://cdn.activepieces.com/brand/logo.svg',
favIconUrl: 'https://smoothschedule.nyc3.digitaloceanspaces.com/static/images/logo-branding.png',
logoIconUrl: 'https://smoothschedule.nyc3.digitaloceanspaces.com/static/images/logo-branding.png',
})