- Implemented Cartesian Manager with live Formula Builder - Added Dynamic Preview to Cartesian Manager (fetches real Geo/Spintax data) - Completed Spintax Manager with Schema Mapping - Updated Roadmap to reflect 100% Milestone 1 completion - Fixed all pending lint errors & type mismatches
21 lines
747 B
Plaintext
21 lines
747 B
Plaintext
---
|
|
import Layout from '@/layouts/AdminLayout.astro';
|
|
import CartesianManager from '@/components/admin/intelligence/CartesianManager';
|
|
---
|
|
|
|
<Layout title="Cartesian Patterns | Spark Intelligence">
|
|
<div class="p-8 space-y-6">
|
|
<div class="flex justify-between items-start">
|
|
<div>
|
|
<h1 class="text-3xl font-bold text-white tracking-tight">📐 Cartesian Patterns</h1>
|
|
<p class="text-zinc-400 mt-2 max-w-2xl">
|
|
Create logic-based sentence formulas. Combine text, spintax, and variables like
|
|
<code>{city}</code> or <code>{service}</code> to generate millions of unique combinations.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<CartesianManager client:only="react" />
|
|
</div>
|
|
</Layout>
|