Skip to content

Commit

Permalink
use signup notice everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
anuejn committed Dec 3, 2023
1 parent ec8ebaf commit 9aeca9a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import WorkerPopupSrc from '../assets/worker_popup.png';
import ExportSrc from '../assets/export.png';
import CorrectSrc from '../assets/correction.svg';
import clsx from 'clsx';
import Link from 'next/link';

export default function HomePage() {
return (
Expand Down Expand Up @@ -95,12 +96,12 @@ function Hero() {
Perfect for interviews, podcasts, video subtitles or voice recordings.
</p>

<a
href="https://transcribee.net/signup"
<Link
href="/signup"
className="inline-block bg-black hover:bg-gray-700 text-white px-4 py-2 rounded-md"
>
Get started for free →
</a>
</Link>
</div>
<div className="flex items-center flex-grow w-full max-w-[800px]">
<Image
Expand Down
6 changes: 3 additions & 3 deletions src/app/pricing/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default function PricingPage() {
<PricingCard
title="Regular"
buttonText="Get Started"
buttonUrl="https://transcribee.net/signup"
buttonUrl="/signup"
className="lg:relative lg:-mx-5 lg:-my-3 lg:z-10 lg:h-[480px] -order-1 lg:order-none"
>
<Price price={5} />
Expand Down Expand Up @@ -111,12 +111,12 @@ function PricingCard({
<h3 className="text-center text-neutral-500 font-medium py-5">{title}</h3>
{children}
<div className="flex-grow" />
<a
<Link
href={buttonUrl}
className="inline-block bg-black hover:bg-gray-700 text-white px-4 py-2 rounded-md"
>
{buttonText}
</a>
</Link>
</div>
);
}
Expand Down

0 comments on commit 9aeca9a

Please sign in to comment.