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:
kovakmedya
2026-04-30 02:28:30 +03:00
commit 29aa346f9e
256 changed files with 35982 additions and 0 deletions
+24
View File
@@ -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>
)
}