Skip to content

Commit

Permalink
Remove Double CTA on homepage (#7322)
Browse files Browse the repository at this point in the history
* feat: Update homepage CTAs

* Removed unused `classNames` import
* Removed the homepage CTAs section as it is no longer needed

* feat: Remove unused homepage CTA section

* Removed unused `classNames` import
* Removed the homepage CTAs section as it is no longer needed
  • Loading branch information
kukicado authored Oct 21, 2024
1 parent 529590c commit 893056f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { FunctionComponent, ReactSVG, useState, useEffect } from 'react'

import classNames from 'classnames'
import ChevronRightIcon from 'mdi-react/ChevronRightIcon'
import Link from 'next/link'
import { posthog } from 'posthog-js'
Expand Down Expand Up @@ -353,6 +352,7 @@ const Home: FunctionComponent = () => {

{/* call to actions ------------------------------------------------------- */}
{/* ------------------------------------------------------------------------------- */}
{/* Remove Duplicate CTA, see HomepageCTA on line 329
<div className="mx-auto mt-10 max-w-6xl">
<div className="mx-6 grid grid-cols-1 gap-6 py-16 md:mx-0 md:grid-cols-2 md:py-24">
<div className="hover:cta-free-cody relative overflow-hidden rounded-2xl border-1 border-gray-200 bg-white">
Expand Down Expand Up @@ -404,6 +404,7 @@ const Home: FunctionComponent = () => {
</div>
</div>
</div>
*/}
</div>
</Layout>
)
Expand Down

0 comments on commit 893056f

Please sign in to comment.