Skip to content

Commit

Permalink
Merge branch 'master' into support-null-as-string
Browse files Browse the repository at this point in the history
  • Loading branch information
robbie-c authored Mar 25, 2024
2 parents 7f35097 + d226bd0 commit 41771f4
Show file tree
Hide file tree
Showing 12 changed files with 188 additions and 79 deletions.
23 changes: 23 additions & 0 deletions frontend/src/lib/components/CustomerLogo.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
interface CustomerProps {
image: string
alt: string
className?: string
}

interface LogoProps {
src: string
alt: string
className?: string
}

const Logo = ({ src, alt, className = '' }: LogoProps): JSX.Element => (
<img className={`bg-transparent w-full px-3 py-3 h-10 ${className}`} src={src} alt={alt} />
)

export const CustomerLogo = ({ image, alt, className = '' }: CustomerProps): JSX.Element => {
return (
<li className="flex items-center justify-center w-full">
<Logo className={className} src={image} alt={alt} />
</li>
)
}
2 changes: 1 addition & 1 deletion frontend/src/lib/constants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ export const FEATURE_FLAGS = {
POSTHOG_3000_NAV: 'posthog-3000-nav', // owner: @Twixes
HEDGEHOG_MODE: 'hedgehog-mode', // owner: @benjackwhite
HEDGEHOG_MODE_DEBUG: 'hedgehog-mode-debug', // owner: @benjackwhite
GENERIC_SIGNUP_BENEFITS: 'generic-signup-benefits', // experiment, owner: @raquelmsmith
SIGNUP_BENEFITS: 'signup-benefits', // experiment, owner: @zlwaterfield
WEB_ANALYTICS: 'web-analytics', // owner @robbie-c #team-web-analytics
WEB_ANALYTICS_SAMPLING: 'web-analytics-sampling', // owner @robbie-c #team-web-analytics
HIGH_FREQUENCY_BATCH_EXPORTS: 'high-frequency-batch-exports', // owner: @tomasfarias
Expand Down
1 change: 1 addition & 0 deletions frontend/src/lib/customers/airbus.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions frontend/src/lib/customers/hasura.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions frontend/src/lib/customers/staples.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions frontend/src/lib/customers/y-combinator.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 41771f4

Please sign in to comment.