mirror of
https://github.com/marcogll/TaxHacker_s23.git
synced 2026-01-13 21:35:19 +00:00
feat: disable saas version
This commit is contained in:
@@ -1,10 +1,7 @@
|
|||||||
import { PricingCard } from "@/components/auth/pricing-card"
|
|
||||||
import { Card, CardContent, CardTitle } from "@/components/ui/card"
|
import { Card, CardContent, CardTitle } from "@/components/ui/card"
|
||||||
import { ColoredText } from "@/components/ui/colored-text"
|
import { ColoredText } from "@/components/ui/colored-text"
|
||||||
import config from "@/lib/config"
|
import config from "@/lib/config"
|
||||||
import { PLANS } from "@/lib/stripe"
|
|
||||||
import { Mail } from "lucide-react"
|
import { Mail } from "lucide-react"
|
||||||
import Link from "next/link"
|
|
||||||
import { redirect } from "next/navigation"
|
import { redirect } from "next/navigation"
|
||||||
|
|
||||||
export default async function ChoosePlanPage() {
|
export default async function ChoosePlanPage() {
|
||||||
@@ -17,39 +14,12 @@ export default async function ChoosePlanPage() {
|
|||||||
<Card className="w-full max-w-4xl mx-auto p-8 flex flex-col items-center justify-center gap-8">
|
<Card className="w-full max-w-4xl mx-auto p-8 flex flex-col items-center justify-center gap-8">
|
||||||
<CardTitle className="text-4xl font-bold text-center">
|
<CardTitle className="text-4xl font-bold text-center">
|
||||||
<ColoredText>TaxHacker Cloud Edition</ColoredText>
|
<ColoredText>TaxHacker Cloud Edition</ColoredText>
|
||||||
<h2 className="mt-3 text-2xl font-semibold text-muted-foreground">Choose your plan</h2>
|
<h2 className="mt-3 text-2xl font-semibold text-muted-foreground">Cloud plans are not available yet</h2>
|
||||||
</CardTitle>
|
</CardTitle>
|
||||||
<CardContent className="p-0 w-full">
|
<CardContent className="p-0 w-full">
|
||||||
{config.auth.disableSignup ? (
|
<div className="text-center text-md text-muted-foreground">
|
||||||
<div className="text-center text-md text-muted-foreground">
|
Cloud plans are not available yet. Please use the self-hosted version or reach out for questions.
|
||||||
Creating new account is disabled for now. Please use the self-hosted version.
|
</div>
|
||||||
</div>
|
|
||||||
) : (
|
|
||||||
<div className="space-y-8">
|
|
||||||
<div className="flex flex-wrap justify-center gap-8">
|
|
||||||
{Object.values(PLANS)
|
|
||||||
.filter((plan) => plan.isAvailable)
|
|
||||||
.map((plan) => (
|
|
||||||
<PricingCard key={plan.code} plan={plan} />
|
|
||||||
))}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="text-center text-muted-foreground">
|
|
||||||
By signing up, you agree to our{" "}
|
|
||||||
<Link href="/docs/terms" className="hover:text-primary transition-colors underline">
|
|
||||||
Terms of Service
|
|
||||||
</Link>
|
|
||||||
,{" "}
|
|
||||||
<Link href="/docs/privacy_policy" className="hover:text-primary transition-colors underline">
|
|
||||||
Privacy Policy
|
|
||||||
</Link>
|
|
||||||
, and{" "}
|
|
||||||
<Link href="/docs/ai" className="hover:text-primary transition-colors underline">
|
|
||||||
AI Usage Disclosure
|
|
||||||
</Link>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
)}
|
|
||||||
</CardContent>
|
</CardContent>
|
||||||
|
|
||||||
<div className="text-center text-muted-foreground">
|
<div className="text-center text-muted-foreground">
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
import { NewsletterForm } from "@/app/landing/newsletter"
|
|
||||||
import { ColoredText } from "@/components/ui/colored-text"
|
import { ColoredText } from "@/components/ui/colored-text"
|
||||||
import config from "@/lib/config"
|
import config from "@/lib/config"
|
||||||
import Image from "next/image"
|
import Image from "next/image"
|
||||||
@@ -22,20 +21,12 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
<ColoredText className="text-2xl font-bold">TaxHacker</ColoredText>
|
<ColoredText className="text-2xl font-bold">TaxHacker</ColoredText>
|
||||||
</Link>
|
</Link>
|
||||||
<div className="flex gap-1 md:gap-4 text-xs md:text-sm">
|
<Link
|
||||||
<Link
|
href="/enter"
|
||||||
href="/enter"
|
className="cursor-pointer font-medium px-4 py-2 rounded-full border-2 border-gradient-to-r from-pink-300 to-indigo-300 hover:from-pink-400 hover:to-indigo-400 bg-white/80 hover:bg-white transition-all duration-300 hover:scale-105 text-xs md:text-sm"
|
||||||
className="cursor-pointer font-medium px-4 py-2 rounded-full border-2 border-gradient-to-r from-pink-300 to-indigo-300 hover:from-pink-400 hover:to-indigo-400 bg-white/80 hover:bg-white transition-all duration-300 hover:scale-105"
|
>
|
||||||
>
|
Log In
|
||||||
Log In
|
</Link>
|
||||||
</Link>
|
|
||||||
<Link
|
|
||||||
href="/cloud"
|
|
||||||
className="cursor-pointer font-medium bg-gradient-to-r from-pink-600 to-indigo-600 text-white px-4 py-2 rounded-full hover:from-pink-700 hover:to-indigo-700 transition-all duration-300 hover:scale-105 shadow-lg hover:shadow-xl"
|
|
||||||
>
|
|
||||||
Sign Up
|
|
||||||
</Link>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
@@ -392,12 +383,13 @@ export default function LandingPage() {
|
|||||||
Automatic updates and new features
|
Automatic updates and new features
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<Link
|
<button
|
||||||
href="/cloud"
|
type="button"
|
||||||
className="block w-full text-center px-6 py-4 bg-gradient-to-r from-pink-600 to-purple-600 text-white font-bold rounded-full hover:from-pink-700 hover:to-purple-700 transition-all duration-300 shadow-xl hover:shadow-2xl hover:scale-110"
|
disabled
|
||||||
|
className="block w-full text-center px-6 py-4 bg-gradient-to-r from-gray-300 to-gray-400 text-gray-700 font-bold rounded-full shadow-xl opacity-80 cursor-not-allowed"
|
||||||
>
|
>
|
||||||
Early Access: from €35/year 💎
|
Temporarily unavailable
|
||||||
</Link>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -520,8 +512,28 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Newsletter Signup */}
|
{/* Stay Tuned / GitHub CTA */}
|
||||||
<NewsletterForm />
|
<div className="bg-gradient-to-r from-purple-50 to-blue-50 p-8 rounded-2xl shadow-sm ring-1 ring-gray-100">
|
||||||
|
<div className="max-w-2xl mx-auto text-center">
|
||||||
|
<h3 className="text-2xl font-semibold mb-4">Stay Tuned</h3>
|
||||||
|
<p className="text-gray-600 mb-6">
|
||||||
|
We're working hard on making TaxHacker useful for everyone. Star and watch our GitHub repo to get
|
||||||
|
notified about new features and releases.
|
||||||
|
</p>
|
||||||
|
<div className="flex flex-col gap-4 max-w-md mx-auto">
|
||||||
|
<div className="flex flex-wrap items-center justify-center gap-4">
|
||||||
|
<a
|
||||||
|
href="https://github.com/vas3k/TaxHacker"
|
||||||
|
target="_blank"
|
||||||
|
rel="noreferrer"
|
||||||
|
className="px-6 py-3 bg-gradient-to-r from-purple-600 to-blue-600 text-white font-medium rounded-full hover:opacity-90 transition-all shadow-lg shadow-purple-500/20"
|
||||||
|
>
|
||||||
|
Open GitHub repo
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user