Skip to content

Commit

Permalink
clients/fix failing homepage
Browse files Browse the repository at this point in the history
  • Loading branch information
emilwidlund committed Nov 7, 2024
1 parent 2fbefb6 commit 1cb9d12
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ export const CheckoutConfirmation = ({
{status === CheckoutStatus.SUCCEEDED && (
<>
{productHasLicenseKeys && (
<ShadowBox className="flex flex-col gap-y-6 bg-white dark:bg-polar-800">
<ShadowBox className="dark:bg-polar-800 flex flex-col gap-y-6 bg-white">
<h3>License Keys</h3>
<div className="flex flex-col gap-y-2">
{product.benefits
Expand All @@ -209,7 +209,7 @@ export const CheckoutConfirmation = ({
</ShadowBox>
)}
{!!downloadablesBenefit && (
<ShadowBox className="flex flex-col gap-y-6 bg-white dark:bg-polar-800">
<ShadowBox className="dark:bg-polar-800 flex flex-col gap-y-6 bg-white">
<h3>Downloadables</h3>
<Downloadables publicBenefit={downloadablesBenefit} />
</ShadowBox>
Expand Down
6 changes: 2 additions & 4 deletions clients/apps/web/src/components/Landing/Hero/Hero.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
'use client'

import GetStartedButton from '@/components/Auth/GetStartedButton'
import { Canvas } from '@react-three/fiber'
import { useCallback, useMemo, useState } from 'react'
import { Coins } from './Coins'

export const Hero = () => {
const [slug, setSlug] = useState('')
Expand All @@ -28,13 +26,13 @@ export const Hero = () => {

return (
<div className="flex w-full flex-col items-center justify-center gap-12 text-center">
<Canvas
{/* <Canvas
camera={{
zoom: 0.8,
}}
>
<Coins />
</Canvas>
</Canvas> */}
<h1 className="max-w-2xl text-pretty text-4xl !leading-tight text-gray-950 md:text-6xl dark:text-white">
Sell SaaS and digital products{' '}
<span className="dark:text-polar-500 text-gray-400">in minutes</span>
Expand Down

0 comments on commit 1cb9d12

Please sign in to comment.