29aa346f9e
- Next.js 16.1.1 + React 19.2.3 + Tailwind v4 + shadcn/ui v3 - Template scaffold (App Router with (auth)/(dashboard)/landing route groups) - pnpm v10 lockfile - CLAUDE.md describing multi-tenant Appwrite architecture, 8 modules, Gitea+Coolify deploy
25 lines
653 B
TypeScript
25 lines
653 B
TypeScript
import { PricingPlans } from "@/components/pricing-plans"
|
|
import { FeaturesGrid } from "./components/features-grid"
|
|
import { FAQSection } from "./components/faq-section"
|
|
|
|
// Import data
|
|
import featuresData from "./data/features.json"
|
|
import faqsData from "./data/faqs.json"
|
|
|
|
export default function PricingPage() {
|
|
return (
|
|
<div className="px-4 lg:px-6">
|
|
{/* Pricing Cards */}
|
|
<section className='pb-12' id='pricing'>
|
|
<PricingPlans mode="pricing" />
|
|
</section>
|
|
|
|
{/* Features Section */}
|
|
<FeaturesGrid features={featuresData} />
|
|
|
|
{/* FAQ Section */}
|
|
<FAQSection faqs={faqsData} />
|
|
</div>
|
|
)
|
|
}
|