-
Notifications
You must be signed in to change notification settings - Fork 0
Update demo URLs to demo.hotcrm.com #336
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -60,14 +60,14 @@ export default async function HomePage({ params }: { params: Promise<{ locale: s | |
|
|
||
| <div className="flex flex-col sm:flex-row gap-4 justify-center items-center animate-in fade-in slide-in-from-bottom-8 duration-1000 delay-300"> | ||
| <Link | ||
| href="/signup" | ||
| href="https://demo.hotcrm.com" | ||
| className="hero-cta-primary inline-flex h-12 items-center justify-center rounded-lg bg-primary px-8 text-base font-medium text-primary-foreground shadow-lg transition-all hover:shadow-primary/25 hover:shadow-xl" | ||
| > | ||
| {dict.home.getStarted} | ||
| <ArrowRight className="ml-2 w-5 h-5" /> | ||
| </Link> | ||
| <Link | ||
| href="/book-demo" | ||
| href="https://demo.hotcrm.com" | ||
| className="inline-flex h-12 items-center justify-center rounded-lg border border-border bg-background/50 backdrop-blur-sm px-8 text-base font-medium shadow-sm transition-all hover:bg-accent hover:text-accent-foreground" | ||
| > | ||
| {dict.home.viewOnGithub} | ||
|
|
@@ -363,14 +363,14 @@ export default async function HomePage({ params }: { params: Promise<{ locale: s | |
| <p className="text-lg text-muted-foreground mb-10 max-w-2xl mx-auto leading-relaxed">{dict.home.ctaSubtitle}</p> | ||
| <div className="flex flex-col sm:flex-row justify-center gap-4"> | ||
| <Link | ||
| href="/signup" | ||
| href="https://demo.hotcrm.com" | ||
| className="inline-flex h-12 items-center justify-center rounded-lg bg-foreground text-background px-8 text-base font-medium transition-all hover:bg-foreground/90 hover:shadow-lg" | ||
| > | ||
| {dict.home.readDocs} | ||
| <ArrowRight className="ml-2 w-5 h-5" /> | ||
| </Link> | ||
| <Link | ||
| href="/book-demo" | ||
| href="https://demo.hotcrm.com" | ||
| className="inline-flex h-12 items-center justify-center rounded-lg border border-border bg-background/50 backdrop-blur-sm px-8 text-base font-medium shadow-sm transition-all hover:bg-accent hover:text-accent-foreground" | ||
| > | ||
| {dict.home.starOnGithub} | ||
|
Comment on lines
369
to
376
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://demo.hotcrm.comis duplicated across multiple CTA links in this file. Consider extracting it into a single constant (or config/env value) and referencing that constant in eachhrefto reduce the chance of future inconsistencies when the demo URL changes again.