Phase 3: Fixed the rest of border radius & card standardization
This commit is contained in:
@@ -171,7 +171,7 @@ export default function CreateFunnelPage() {
|
|||||||
<select
|
<select
|
||||||
value={step.type}
|
value={step.type}
|
||||||
onChange={(e) => handleUpdateStep(index, 'type', e.target.value)}
|
onChange={(e) => handleUpdateStep(index, 'type', e.target.value)}
|
||||||
className="w-24 px-2 py-2 bg-white dark:bg-neutral-900 border border-neutral-200 dark:border-neutral-800 rounded-xl text-sm focus:ring-2 focus:ring-brand-orange/20 focus:border-brand-orange outline-none"
|
className="w-24 px-2 py-2 bg-white dark:bg-neutral-900 border border-neutral-200 dark:border-neutral-800 rounded-lg text-sm focus:ring-2 focus:ring-brand-orange/20 focus:border-brand-orange outline-none"
|
||||||
>
|
>
|
||||||
<option value="exact">Exact</option>
|
<option value="exact">Exact</option>
|
||||||
<option value="contains">Contains</option>
|
<option value="contains">Contains</option>
|
||||||
|
|||||||
@@ -396,7 +396,7 @@ export default function SiteSettingsPage() {
|
|||||||
required
|
required
|
||||||
value={formData.name}
|
value={formData.name}
|
||||||
onChange={(e) => setFormData({ ...formData, name: e.target.value })}
|
onChange={(e) => setFormData({ ...formData, name: e.target.value })}
|
||||||
className="w-full px-4 py-2 border border-neutral-200 dark:border-neutral-800 rounded-xl bg-neutral-50/50 dark:bg-neutral-900/50 focus:bg-white dark:focus:bg-neutral-900
|
className="w-full px-4 py-2 border border-neutral-200 dark:border-neutral-800 rounded-lg bg-neutral-50/50 dark:bg-neutral-900/50 focus:bg-white dark:focus:bg-neutral-900
|
||||||
focus:border-brand-orange focus:ring-4 focus:ring-brand-orange/10 outline-none transition-all duration-200 dark:text-white"
|
focus:border-brand-orange focus:ring-4 focus:ring-brand-orange/10 outline-none transition-all duration-200 dark:text-white"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -424,7 +424,7 @@ export default function SiteSettingsPage() {
|
|||||||
type="text"
|
type="text"
|
||||||
value={site.domain}
|
value={site.domain}
|
||||||
disabled
|
disabled
|
||||||
className="w-full px-4 py-2 border border-neutral-200 dark:border-neutral-800 rounded-xl bg-neutral-100 dark:bg-neutral-800/50 text-neutral-500 dark:text-neutral-400 cursor-not-allowed"
|
className="w-full px-4 py-2 border border-neutral-200 dark:border-neutral-800 rounded-lg bg-neutral-100 dark:bg-neutral-800/50 text-neutral-500 dark:text-neutral-400 cursor-not-allowed"
|
||||||
/>
|
/>
|
||||||
<p className="text-xs text-neutral-500 dark:text-neutral-400">
|
<p className="text-xs text-neutral-500 dark:text-neutral-400">
|
||||||
Domain cannot be changed after creation
|
Domain cannot be changed after creation
|
||||||
@@ -495,7 +495,7 @@ export default function SiteSettingsPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="space-y-4">
|
<div className="space-y-4">
|
||||||
<div className="p-4 border border-red-200 dark:border-red-900/50 bg-red-50 dark:bg-red-900/10 rounded-xl flex items-center justify-between">
|
<div className="p-4 border border-red-200 dark:border-red-900/50 bg-red-50 dark:bg-red-900/10 rounded-2xl flex items-center justify-between">
|
||||||
<div>
|
<div>
|
||||||
<h3 className="font-medium text-red-900 dark:text-red-200">Reset Data</h3>
|
<h3 className="font-medium text-red-900 dark:text-red-200">Reset Data</h3>
|
||||||
<p className="text-sm text-red-700 dark:text-red-300 mt-1">Delete all stats and events. This cannot be undone.</p>
|
<p className="text-sm text-red-700 dark:text-red-300 mt-1">Delete all stats and events. This cannot be undone.</p>
|
||||||
@@ -508,7 +508,7 @@ export default function SiteSettingsPage() {
|
|||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="p-4 border border-red-200 dark:border-red-900/50 bg-red-50 dark:bg-red-900/10 rounded-xl flex items-center justify-between">
|
<div className="p-4 border border-red-200 dark:border-red-900/50 bg-red-50 dark:bg-red-900/10 rounded-2xl flex items-center justify-between">
|
||||||
<div>
|
<div>
|
||||||
<h3 className="font-medium text-red-900 dark:text-red-200">Delete Site</h3>
|
<h3 className="font-medium text-red-900 dark:text-red-200">Delete Site</h3>
|
||||||
<p className="text-sm text-red-700 dark:text-red-300 mt-1">Permanently delete this site and all data.</p>
|
<p className="text-sm text-red-700 dark:text-red-300 mt-1">Permanently delete this site and all data.</p>
|
||||||
@@ -534,7 +534,7 @@ export default function SiteSettingsPage() {
|
|||||||
<p className="text-sm text-neutral-500 dark:text-neutral-400">Manage who can view your dashboard.</p>
|
<p className="text-sm text-neutral-500 dark:text-neutral-400">Manage who can view your dashboard.</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="p-4 bg-neutral-50 dark:bg-neutral-900/50 rounded-xl border border-neutral-100 dark:border-neutral-800">
|
<div className="p-4 bg-neutral-50 dark:bg-neutral-900/50 rounded-2xl border border-neutral-100 dark:border-neutral-800">
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<div className="flex items-center gap-3">
|
<div className="flex items-center gap-3">
|
||||||
<div className="p-2 bg-white dark:bg-neutral-800 rounded-lg text-neutral-400">
|
<div className="p-2 bg-white dark:bg-neutral-800 rounded-lg text-neutral-400">
|
||||||
@@ -576,7 +576,7 @@ export default function SiteSettingsPage() {
|
|||||||
type="text"
|
type="text"
|
||||||
readOnly
|
readOnly
|
||||||
value={`${APP_URL}/share/${siteId}`}
|
value={`${APP_URL}/share/${siteId}`}
|
||||||
className="flex-1 px-4 py-2 border border-neutral-200 dark:border-neutral-800 rounded-xl bg-white dark:bg-neutral-900 text-neutral-600 dark:text-neutral-400 font-mono text-sm"
|
className="flex-1 px-4 py-2 border border-neutral-200 dark:border-neutral-800 rounded-lg bg-white dark:bg-neutral-900 text-neutral-600 dark:text-neutral-400 font-mono text-sm"
|
||||||
/>
|
/>
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
@@ -673,7 +673,7 @@ export default function SiteSettingsPage() {
|
|||||||
<h3 className="text-sm font-medium text-neutral-700 dark:text-neutral-300">Data Collection</h3>
|
<h3 className="text-sm font-medium text-neutral-700 dark:text-neutral-300">Data Collection</h3>
|
||||||
|
|
||||||
{/* Page Paths Toggle */}
|
{/* Page Paths Toggle */}
|
||||||
<div className="p-4 bg-neutral-50 dark:bg-neutral-900/50 rounded-xl border border-neutral-100 dark:border-neutral-800">
|
<div className="p-4 bg-neutral-50 dark:bg-neutral-900/50 rounded-2xl border border-neutral-100 dark:border-neutral-800">
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<div>
|
<div>
|
||||||
<h4 className="font-medium text-neutral-900 dark:text-white">Page Paths</h4>
|
<h4 className="font-medium text-neutral-900 dark:text-white">Page Paths</h4>
|
||||||
@@ -694,7 +694,7 @@ export default function SiteSettingsPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Referrers Toggle */}
|
{/* Referrers Toggle */}
|
||||||
<div className="p-4 bg-neutral-50 dark:bg-neutral-900/50 rounded-xl border border-neutral-100 dark:border-neutral-800">
|
<div className="p-4 bg-neutral-50 dark:bg-neutral-900/50 rounded-2xl border border-neutral-100 dark:border-neutral-800">
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<div>
|
<div>
|
||||||
<h4 className="font-medium text-neutral-900 dark:text-white">Referrers</h4>
|
<h4 className="font-medium text-neutral-900 dark:text-white">Referrers</h4>
|
||||||
@@ -715,7 +715,7 @@ export default function SiteSettingsPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Device Info Toggle */}
|
{/* Device Info Toggle */}
|
||||||
<div className="p-4 bg-neutral-50 dark:bg-neutral-900/50 rounded-xl border border-neutral-100 dark:border-neutral-800">
|
<div className="p-4 bg-neutral-50 dark:bg-neutral-900/50 rounded-2xl border border-neutral-100 dark:border-neutral-800">
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<div>
|
<div>
|
||||||
<h4 className="font-medium text-neutral-900 dark:text-white">Device Info</h4>
|
<h4 className="font-medium text-neutral-900 dark:text-white">Device Info</h4>
|
||||||
@@ -736,7 +736,7 @@ export default function SiteSettingsPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Geographic Data Dropdown */}
|
{/* Geographic Data Dropdown */}
|
||||||
<div className="p-4 bg-neutral-50 dark:bg-neutral-900/50 rounded-xl border border-neutral-100 dark:border-neutral-800">
|
<div className="p-4 bg-neutral-50 dark:bg-neutral-900/50 rounded-2xl border border-neutral-100 dark:border-neutral-800">
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<div>
|
<div>
|
||||||
<h4 className="font-medium text-neutral-900 dark:text-white">Geographic Data</h4>
|
<h4 className="font-medium text-neutral-900 dark:text-white">Geographic Data</h4>
|
||||||
@@ -760,7 +760,7 @@ export default function SiteSettingsPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Screen Resolution Toggle */}
|
{/* Screen Resolution Toggle */}
|
||||||
<div className="p-4 bg-neutral-50 dark:bg-neutral-900/50 rounded-xl border border-neutral-100 dark:border-neutral-800">
|
<div className="p-4 bg-neutral-50 dark:bg-neutral-900/50 rounded-2xl border border-neutral-100 dark:border-neutral-800">
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<div>
|
<div>
|
||||||
<h4 className="font-medium text-neutral-900 dark:text-white">Screen Resolution</h4>
|
<h4 className="font-medium text-neutral-900 dark:text-white">Screen Resolution</h4>
|
||||||
@@ -784,7 +784,7 @@ export default function SiteSettingsPage() {
|
|||||||
{/* Bot and noise filtering */}
|
{/* Bot and noise filtering */}
|
||||||
<div className="space-y-4 pt-6 border-t border-neutral-100 dark:border-neutral-800">
|
<div className="space-y-4 pt-6 border-t border-neutral-100 dark:border-neutral-800">
|
||||||
<h3 className="text-sm font-medium text-neutral-700 dark:text-neutral-300">Filtering</h3>
|
<h3 className="text-sm font-medium text-neutral-700 dark:text-neutral-300">Filtering</h3>
|
||||||
<div className="p-4 bg-neutral-50 dark:bg-neutral-900/50 rounded-xl border border-neutral-100 dark:border-neutral-800">
|
<div className="p-4 bg-neutral-50 dark:bg-neutral-900/50 rounded-2xl border border-neutral-100 dark:border-neutral-800">
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<div>
|
<div>
|
||||||
<h4 className="font-medium text-neutral-900 dark:text-white">Filter bots and referrer spam</h4>
|
<h4 className="font-medium text-neutral-900 dark:text-white">Filter bots and referrer spam</h4>
|
||||||
@@ -808,7 +808,7 @@ export default function SiteSettingsPage() {
|
|||||||
{/* Performance Insights Toggle */}
|
{/* Performance Insights Toggle */}
|
||||||
<div className="space-y-4 pt-6 border-t border-neutral-100 dark:border-neutral-800">
|
<div className="space-y-4 pt-6 border-t border-neutral-100 dark:border-neutral-800">
|
||||||
<h3 className="text-sm font-medium text-neutral-700 dark:text-neutral-300">Performance Insights</h3>
|
<h3 className="text-sm font-medium text-neutral-700 dark:text-neutral-300">Performance Insights</h3>
|
||||||
<div className="p-4 bg-neutral-50 dark:bg-neutral-900/50 rounded-xl border border-neutral-100 dark:border-neutral-800">
|
<div className="p-4 bg-neutral-50 dark:bg-neutral-900/50 rounded-2xl border border-neutral-100 dark:border-neutral-800">
|
||||||
<div className="flex items-center justify-between">
|
<div className="flex items-center justify-between">
|
||||||
<div>
|
<div>
|
||||||
<h4 className="font-medium text-neutral-900 dark:text-white">Performance Insights (Add-on)</h4>
|
<h4 className="font-medium text-neutral-900 dark:text-white">Performance Insights (Add-on)</h4>
|
||||||
@@ -843,7 +843,7 @@ export default function SiteSettingsPage() {
|
|||||||
value={formData.excluded_paths}
|
value={formData.excluded_paths}
|
||||||
onChange={(e) => setFormData({ ...formData, excluded_paths: e.target.value })}
|
onChange={(e) => setFormData({ ...formData, excluded_paths: e.target.value })}
|
||||||
placeholder="/admin/* /staging/*"
|
placeholder="/admin/* /staging/*"
|
||||||
className="w-full px-4 py-3 border border-neutral-200 dark:border-neutral-800 rounded-xl bg-neutral-50/50 dark:bg-neutral-900/50 focus:bg-white dark:focus:bg-neutral-900
|
className="w-full px-4 py-3 border border-neutral-200 dark:border-neutral-800 rounded-lg bg-neutral-50/50 dark:bg-neutral-900/50 focus:bg-white dark:focus:bg-neutral-900
|
||||||
focus:border-brand-orange focus:ring-4 focus:ring-brand-orange/10 outline-none transition-all duration-200 dark:text-white font-mono text-sm"
|
focus:border-brand-orange focus:ring-4 focus:ring-brand-orange/10 outline-none transition-all duration-200 dark:text-white font-mono text-sm"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -937,14 +937,14 @@ export default function SiteSettingsPage() {
|
|||||||
)}
|
)}
|
||||||
<div className="space-y-2">
|
<div className="space-y-2">
|
||||||
{goals.length === 0 ? (
|
{goals.length === 0 ? (
|
||||||
<div className="p-6 rounded-xl border border-neutral-200 dark:border-neutral-800 bg-neutral-50 dark:bg-neutral-900/50 text-center text-neutral-500 dark:text-neutral-400 text-sm">
|
<div className="p-6 rounded-2xl border border-neutral-200 dark:border-neutral-800 bg-neutral-50 dark:bg-neutral-900/50 text-center text-neutral-500 dark:text-neutral-400 text-sm">
|
||||||
No goals yet. Add a goal to give custom events a display name in the dashboard.
|
No goals yet. Add a goal to give custom events a display name in the dashboard.
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
goals.map((goal) => (
|
goals.map((goal) => (
|
||||||
<div
|
<div
|
||||||
key={goal.id}
|
key={goal.id}
|
||||||
className="flex items-center justify-between py-3 px-4 rounded-xl border border-neutral-200 dark:border-neutral-800 bg-neutral-50/50 dark:bg-neutral-900/50"
|
className="flex items-center justify-between py-3 px-4 rounded-2xl border border-neutral-200 dark:border-neutral-800 bg-neutral-50/50 dark:bg-neutral-900/50"
|
||||||
>
|
>
|
||||||
<div>
|
<div>
|
||||||
<span className="font-medium text-neutral-900 dark:text-white">{goal.name}</span>
|
<span className="font-medium text-neutral-900 dark:text-white">{goal.name}</span>
|
||||||
@@ -994,7 +994,7 @@ export default function SiteSettingsPage() {
|
|||||||
value={goalForm.name}
|
value={goalForm.name}
|
||||||
onChange={(e) => setGoalForm({ ...goalForm, name: e.target.value })}
|
onChange={(e) => setGoalForm({ ...goalForm, name: e.target.value })}
|
||||||
placeholder="e.g. Signups"
|
placeholder="e.g. Signups"
|
||||||
className="w-full px-4 py-2 border border-neutral-200 dark:border-neutral-800 rounded-xl bg-white dark:bg-neutral-900 text-neutral-900 dark:text-white"
|
className="w-full px-4 py-2 border border-neutral-200 dark:border-neutral-800 rounded-lg bg-white dark:bg-neutral-900 text-neutral-900 dark:text-white"
|
||||||
required
|
required
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -1005,7 +1005,7 @@ export default function SiteSettingsPage() {
|
|||||||
value={goalForm.event_name}
|
value={goalForm.event_name}
|
||||||
onChange={(e) => setGoalForm({ ...goalForm, event_name: e.target.value })}
|
onChange={(e) => setGoalForm({ ...goalForm, event_name: e.target.value })}
|
||||||
placeholder="e.g. signup_click (letters, numbers, underscores only)"
|
placeholder="e.g. signup_click (letters, numbers, underscores only)"
|
||||||
className="w-full px-4 py-2 border border-neutral-200 dark:border-neutral-800 rounded-xl bg-white dark:bg-neutral-900 text-neutral-900 dark:text-white"
|
className="w-full px-4 py-2 border border-neutral-200 dark:border-neutral-800 rounded-lg bg-white dark:bg-neutral-900 text-neutral-900 dark:text-white"
|
||||||
required
|
required
|
||||||
/>
|
/>
|
||||||
<p className="mt-1 text-xs text-neutral-500 dark:text-neutral-400">Only letters, numbers, and underscores; spaces become underscores. Invalid characters cannot be used. Max 64 characters after formatting.</p>
|
<p className="mt-1 text-xs text-neutral-500 dark:text-neutral-400">Only letters, numbers, and underscores; spaces become underscores. Invalid characters cannot be used. Max 64 characters after formatting.</p>
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ export default function PasswordInput({
|
|||||||
onBlur={onBlur}
|
onBlur={onBlur}
|
||||||
aria-invalid={!!error}
|
aria-invalid={!!error}
|
||||||
aria-describedby={error ? errorId : undefined}
|
aria-describedby={error ? errorId : undefined}
|
||||||
className={`w-full pl-11 pr-12 py-3 border rounded-xl bg-neutral-50/50 dark:bg-neutral-900/50 focus:bg-white dark:focus:bg-neutral-900
|
className={`w-full pl-11 pr-12 py-3 border rounded-lg bg-neutral-50/50 dark:bg-neutral-900/50 focus:bg-white dark:focus:bg-neutral-900
|
||||||
transition-all duration-200 outline-none disabled:opacity-50 disabled:cursor-not-allowed dark:text-white
|
transition-all duration-200 outline-none disabled:opacity-50 disabled:cursor-not-allowed dark:text-white
|
||||||
${error
|
${error
|
||||||
? 'border-red-300 dark:border-red-800 focus:border-red-500 focus:ring-4 focus:ring-red-500/10'
|
? 'border-red-300 dark:border-red-800 focus:border-red-500 focus:ring-4 focus:ring-red-500/10'
|
||||||
|
|||||||
@@ -490,7 +490,7 @@ export default function OrganizationSettings() {
|
|||||||
<p className="text-sm text-neutral-500 dark:text-neutral-400">Irreversible actions for this organization.</p>
|
<p className="text-sm text-neutral-500 dark:text-neutral-400">Irreversible actions for this organization.</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="p-4 border border-red-200 dark:border-red-900/50 bg-red-50 dark:bg-red-900/10 rounded-xl flex items-center justify-between">
|
<div className="p-4 border border-red-200 dark:border-red-900/50 bg-red-50 dark:bg-red-900/10 rounded-2xl flex items-center justify-between">
|
||||||
<div>
|
<div>
|
||||||
<h3 className="font-medium text-red-900 dark:text-red-200">Delete Organization</h3>
|
<h3 className="font-medium text-red-900 dark:text-red-200">Delete Organization</h3>
|
||||||
<p className="text-sm text-red-700 dark:text-red-300 mt-1">Permanently delete this organization and all its data.</p>
|
<p className="text-sm text-red-700 dark:text-red-300 mt-1">Permanently delete this organization and all its data.</p>
|
||||||
@@ -513,7 +513,7 @@ export default function OrganizationSettings() {
|
|||||||
<h2 className="text-xl font-semibold text-neutral-900 dark:text-white mb-1">Organization Members</h2>
|
<h2 className="text-xl font-semibold text-neutral-900 dark:text-white mb-1">Organization Members</h2>
|
||||||
<p className="text-sm text-neutral-500 dark:text-neutral-400 mb-6">Manage who has access to this organization.</p>
|
<p className="text-sm text-neutral-500 dark:text-neutral-400 mb-6">Manage who has access to this organization.</p>
|
||||||
|
|
||||||
<div className="bg-neutral-50 dark:bg-neutral-900/50 border border-neutral-200 dark:border-neutral-800 rounded-xl p-4">
|
<div className="bg-neutral-50 dark:bg-neutral-900/50 border border-neutral-200 dark:border-neutral-800 rounded-2xl p-4">
|
||||||
<h3 className="text-sm font-medium text-neutral-900 dark:text-white mb-3">Invite New Member</h3>
|
<h3 className="text-sm font-medium text-neutral-900 dark:text-white mb-3">Invite New Member</h3>
|
||||||
<form onSubmit={handleSendInvite} className="flex gap-3 items-end">
|
<form onSubmit={handleSendInvite} className="flex gap-3 items-end">
|
||||||
<div className="flex-1">
|
<div className="flex-1">
|
||||||
@@ -647,7 +647,7 @@ export default function OrganizationSettings() {
|
|||||||
Loading subscription details...
|
Loading subscription details...
|
||||||
</div>
|
</div>
|
||||||
) : !subscription ? (
|
) : !subscription ? (
|
||||||
<div className="p-8 text-center bg-neutral-50 dark:bg-neutral-900/50 rounded-xl border border-neutral-200 dark:border-neutral-800">
|
<div className="p-8 text-center bg-neutral-50 dark:bg-neutral-900/50 rounded-2xl border border-neutral-200 dark:border-neutral-800">
|
||||||
<p className="text-neutral-500">Could not load subscription details.</p>
|
<p className="text-neutral-500">Could not load subscription details.</p>
|
||||||
<Button
|
<Button
|
||||||
variant="ghost"
|
variant="ghost"
|
||||||
@@ -660,7 +660,7 @@ export default function OrganizationSettings() {
|
|||||||
) : (
|
) : (
|
||||||
<div className="space-y-8">
|
<div className="space-y-8">
|
||||||
{/* Current Plan */}
|
{/* Current Plan */}
|
||||||
<div className="bg-neutral-50 dark:bg-neutral-900/50 border border-neutral-200 dark:border-neutral-800 rounded-xl p-6">
|
<div className="bg-neutral-50 dark:bg-neutral-900/50 border border-neutral-200 dark:border-neutral-800 rounded-2xl p-6">
|
||||||
<div className="flex items-start justify-between mb-6">
|
<div className="flex items-start justify-between mb-6">
|
||||||
<div>
|
<div>
|
||||||
<h3 className="text-sm font-medium text-neutral-500 uppercase tracking-wider mb-1">Current Plan</h3>
|
<h3 className="text-sm font-medium text-neutral-500 uppercase tracking-wider mb-1">Current Plan</h3>
|
||||||
@@ -738,7 +738,7 @@ export default function OrganizationSettings() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{!subscription.has_payment_method && (
|
{!subscription.has_payment_method && (
|
||||||
<div className="p-6 bg-brand-orange/5 border border-brand-orange/20 rounded-xl">
|
<div className="p-6 bg-brand-orange/5 border border-brand-orange/20 rounded-2xl">
|
||||||
<h3 className="font-medium text-brand-orange mb-2">Upgrade to Pro</h3>
|
<h3 className="font-medium text-brand-orange mb-2">Upgrade to Pro</h3>
|
||||||
<p className="text-sm text-neutral-600 dark:text-neutral-400 mb-4">
|
<p className="text-sm text-neutral-600 dark:text-neutral-400 mb-4">
|
||||||
Get higher limits, more data retention, and priority support.
|
Get higher limits, more data retention, and priority support.
|
||||||
@@ -829,7 +829,7 @@ export default function OrganizationSettings() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{/* Advanced Filters */}
|
{/* Advanced Filters */}
|
||||||
<div className="bg-neutral-50 dark:bg-neutral-900/50 border border-neutral-200 dark:border-neutral-800 rounded-xl p-4 mb-6">
|
<div className="bg-neutral-50 dark:bg-neutral-900/50 border border-neutral-200 dark:border-neutral-800 rounded-2xl p-4 mb-6">
|
||||||
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4">
|
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4">
|
||||||
<div className="space-y-1">
|
<div className="space-y-1">
|
||||||
<label className="block text-xs font-medium text-neutral-500 uppercase">Log ID</label>
|
<label className="block text-xs font-medium text-neutral-500 uppercase">Log ID</label>
|
||||||
|
|||||||
@@ -196,7 +196,7 @@ export default function UtmBuilder({ initialSiteId }: UtmBuilderProps) {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{generatedUrl && (
|
{generatedUrl && (
|
||||||
<div className="mt-6 p-4 bg-neutral-50 dark:bg-neutral-900 rounded-xl border border-neutral-200 dark:border-neutral-800 flex items-center justify-between group">
|
<div className="mt-6 p-4 bg-neutral-50 dark:bg-neutral-900 rounded-2xl border border-neutral-200 dark:border-neutral-800 flex items-center justify-between group">
|
||||||
<code className="text-sm break-all text-brand-orange font-mono">{generatedUrl}</code>
|
<code className="text-sm break-all text-brand-orange font-mono">{generatedUrl}</code>
|
||||||
<Button
|
<Button
|
||||||
variant="secondary"
|
variant="secondary"
|
||||||
|
|||||||
Reference in New Issue
Block a user