Initial commit: silicondeck/shadcn-dashboard-landing-template (nextjs-version) + CLAUDE.md
- 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
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user