feat: landing page, schedule action, editorial calendar LLM, Fase D foundations
Landing Page: - Public landing page at /landing with hero, features grid, CTA - ProtectedRoute redirects to /landing instead of /login when not auth'd - Editorial Fresh design: Fraunces headings, clamp() responsive sizing Schedule Action: - "Schedula" button appears after approving a post - ScheduleModal: date/time picker, creates ScheduledPost via API - Reminder to connect social accounts for automatic publishing Editorial Calendar LLM: - Backend: generate-calendar now calls LLM to generate hook + brief for each slot - Uses character profile (voice, target, niche) for contextual ideas - Respects brief strategico from the UI - Frontend: slots show AI-generated hook (Fraunces serif) + brief description - Each slot has "Genera contenuto →" link for one-click content generation Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -19,6 +19,7 @@ import CommentsQueue from './components/CommentsQueue'
|
||||
import SettingsPage from './components/SettingsPage'
|
||||
import EditorialCalendar from './components/EditorialCalendar'
|
||||
import AdminSettings from './components/AdminSettings'
|
||||
import LandingPage from './components/LandingPage'
|
||||
import CookieBanner from './components/CookieBanner'
|
||||
import PrivacyPolicy from './components/legal/PrivacyPolicy'
|
||||
import TermsOfService from './components/legal/TermsOfService'
|
||||
@@ -35,6 +36,7 @@ export default function App() {
|
||||
<CookieBanner />
|
||||
<Routes>
|
||||
{/* Public routes */}
|
||||
<Route path="/landing" element={<LandingPage />} />
|
||||
<Route path="/login" element={<LoginPage />} />
|
||||
<Route path="/auth/callback" element={<AuthCallback />} />
|
||||
<Route path="/privacy" element={<PrivacyPolicy />} />
|
||||
@@ -42,7 +44,7 @@ export default function App() {
|
||||
<Route path="/cookie" element={<CookiePolicy />} />
|
||||
|
||||
{/* Protected routes */}
|
||||
<Route element={<ProtectedRoute />}>
|
||||
<Route element={<ProtectedRoute fallback="/landing" />}>
|
||||
<Route element={<Layout />}>
|
||||
<Route path="/" element={<Dashboard />} />
|
||||
<Route path="/characters" element={<CharacterList />} />
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import { useState, useEffect, useRef } from 'react'
|
||||
import { createPortal } from 'react-dom'
|
||||
import { Link, useSearchParams } from 'react-router-dom'
|
||||
import { api } from '../api'
|
||||
import { useAuth } from '../AuthContext'
|
||||
@@ -50,6 +51,9 @@ export default function ContentPage() {
|
||||
const [editing, setEditing] = useState(false)
|
||||
const [editText, setEditText] = useState('')
|
||||
const [showDeleteConfirm, setShowDeleteConfirm] = useState(false)
|
||||
const [showScheduleModal, setShowScheduleModal] = useState(false)
|
||||
const [scheduleDate, setScheduleDate] = useState('')
|
||||
const [scheduleTime, setScheduleTime] = useState('09:00')
|
||||
|
||||
const [form, setForm] = useState({
|
||||
character_id: '',
|
||||
@@ -172,6 +176,21 @@ export default function ContentPage() {
|
||||
} catch (err) { setError(err.message || 'Errore eliminazione') }
|
||||
}
|
||||
|
||||
const handleSchedule = async () => {
|
||||
if (!generated || !scheduleDate) return
|
||||
try {
|
||||
const scheduledAt = new Date(`${scheduleDate}T${scheduleTime}:00`).toISOString()
|
||||
await api.post('/plans/schedule', {
|
||||
post_id: generated.id,
|
||||
platform: generated.platform_hint || 'instagram',
|
||||
scheduled_at: scheduledAt,
|
||||
})
|
||||
updateActivePost({ status: 'scheduled' })
|
||||
setShowScheduleModal(false)
|
||||
setError('')
|
||||
} catch (err) { setError(err.message || 'Errore nella schedulazione') }
|
||||
}
|
||||
|
||||
return (
|
||||
<div style={{ animation: 'fade-up 0.5s ease-out both' }}>
|
||||
{/* Header */}
|
||||
@@ -429,13 +448,21 @@ export default function ContentPage() {
|
||||
/>
|
||||
)}
|
||||
|
||||
<div style={{ display: 'flex', gap: '0.5rem', paddingTop: '1rem', borderTop: '1px solid var(--border)', flexWrap: 'wrap' }}>
|
||||
{generated.status !== 'approved' && (
|
||||
<div style={{ display: 'flex', gap: '0.5rem', paddingTop: '1rem', borderTop: '1px solid var(--border)', flexWrap: 'wrap', alignItems: 'center' }}>
|
||||
{generated.status !== 'approved' && generated.status !== 'scheduled' && (
|
||||
<button onClick={handleApprove} style={{ ...btnPrimary, backgroundColor: 'var(--success)' }}>Approva</button>
|
||||
)}
|
||||
{generated.status === 'approved' && (
|
||||
<button onClick={() => setShowScheduleModal(true)} style={{ ...btnPrimary, backgroundColor: '#3B82F6' }}>Schedula</button>
|
||||
)}
|
||||
{!editing && <button onClick={() => setEditing(true)} style={btnSecondary}>Modifica</button>}
|
||||
<button onClick={() => setShowDeleteConfirm(true)} style={{ ...btnSecondary, marginLeft: 'auto', color: 'var(--error)' }}>Elimina</button>
|
||||
</div>
|
||||
{generated.status === 'approved' && (
|
||||
<p style={{ fontSize: '0.75rem', color: 'var(--ink-muted)', marginTop: '0.5rem', lineHeight: 1.5 }}>
|
||||
Per pubblicare automaticamente, connetti i tuoi account social in <Link to="/social" style={{ color: 'var(--accent)' }}>Impostazioni Social</Link>.
|
||||
</p>
|
||||
)}
|
||||
</div>
|
||||
) : (
|
||||
<div style={{ display: 'flex', flexDirection: 'column', alignItems: 'center', justifyContent: 'center', padding: '4rem 1rem', textAlign: 'center' }}>
|
||||
@@ -458,11 +485,69 @@ export default function ContentPage() {
|
||||
onConfirm={handleDelete}
|
||||
onCancel={() => setShowDeleteConfirm(false)}
|
||||
/>
|
||||
{showScheduleModal && (
|
||||
<ScheduleModal
|
||||
date={scheduleDate}
|
||||
time={scheduleTime}
|
||||
onDateChange={setScheduleDate}
|
||||
onTimeChange={setScheduleTime}
|
||||
onConfirm={handleSchedule}
|
||||
onCancel={() => setShowScheduleModal(false)}
|
||||
platform={generated?.platform_hint}
|
||||
/>
|
||||
)}
|
||||
<style>{`@keyframes spin { to { transform: rotate(360deg) } }`}</style>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
function ScheduleModal({ date, time, onDateChange, onTimeChange, onConfirm, onCancel, platform }) {
|
||||
// Default to tomorrow
|
||||
const tomorrow = new Date(Date.now() + 86400000).toISOString().split('T')[0]
|
||||
if (!date) onDateChange(tomorrow)
|
||||
|
||||
return createPortal(
|
||||
<div style={{ position: 'fixed', top: 0, left: 0, right: 0, bottom: 0, zIndex: 99999, display: 'flex', alignItems: 'center', justifyContent: 'center' }}>
|
||||
<div onClick={onCancel} style={{ position: 'fixed', top: 0, left: 0, right: 0, bottom: 0, backgroundColor: 'rgba(26,26,26,0.5)', backdropFilter: 'blur(3px)' }} />
|
||||
<div style={{
|
||||
position: 'relative', backgroundColor: 'var(--surface)', border: '1px solid var(--border)',
|
||||
borderTop: '4px solid #3B82F6', padding: '2rem', maxWidth: 400, width: '90%',
|
||||
boxShadow: '0 20px 60px rgba(0,0,0,0.15)',
|
||||
}}>
|
||||
<h3 style={{ fontFamily: "'Fraunces', serif", fontSize: '1.15rem', fontWeight: 600, color: 'var(--ink)', margin: '0 0 0.5rem' }}>
|
||||
Schedula pubblicazione
|
||||
</h3>
|
||||
<p style={{ fontSize: '0.82rem', color: 'var(--ink-muted)', margin: '0 0 1.25rem', lineHeight: 1.5 }}>
|
||||
Scegli data e ora per la pubblicazione{platform ? ` su ${platform}` : ''}.
|
||||
Il post verrà pubblicato automaticamente quando i social saranno connessi.
|
||||
</p>
|
||||
<div style={{ display: 'flex', gap: '0.75rem', marginBottom: '1.5rem' }}>
|
||||
<div style={{ flex: 1 }}>
|
||||
<label style={{ display: 'block', fontSize: '0.7rem', fontWeight: 700, letterSpacing: '0.08em', textTransform: 'uppercase', color: 'var(--ink-muted)', marginBottom: '0.3rem' }}>Data</label>
|
||||
<input type="date" value={date || tomorrow} onChange={e => onDateChange(e.target.value)}
|
||||
min={new Date().toISOString().split('T')[0]}
|
||||
style={{ width: '100%', padding: '0.5rem', border: '1px solid var(--border)', fontSize: '0.875rem', fontFamily: "'DM Sans', sans-serif", outline: 'none' }} />
|
||||
</div>
|
||||
<div style={{ width: 100 }}>
|
||||
<label style={{ display: 'block', fontSize: '0.7rem', fontWeight: 700, letterSpacing: '0.08em', textTransform: 'uppercase', color: 'var(--ink-muted)', marginBottom: '0.3rem' }}>Ora</label>
|
||||
<input type="time" value={time} onChange={e => onTimeChange(e.target.value)}
|
||||
style={{ width: '100%', padding: '0.5rem', border: '1px solid var(--border)', fontSize: '0.875rem', fontFamily: "'DM Sans', sans-serif", outline: 'none' }} />
|
||||
</div>
|
||||
</div>
|
||||
<div style={{ display: 'flex', gap: '0.5rem', justifyContent: 'flex-end' }}>
|
||||
<button onClick={onCancel} style={{ padding: '0.5rem 1rem', fontSize: '0.85rem', fontWeight: 600, fontFamily: "'DM Sans', sans-serif", backgroundColor: 'var(--cream-dark)', color: 'var(--ink-light)', border: 'none', cursor: 'pointer' }}>
|
||||
Annulla
|
||||
</button>
|
||||
<button onClick={onConfirm} style={{ padding: '0.5rem 1rem', fontSize: '0.85rem', fontWeight: 600, fontFamily: "'DM Sans', sans-serif", backgroundColor: '#3B82F6', color: 'white', border: 'none', cursor: 'pointer' }}>
|
||||
Schedula
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>,
|
||||
document.body
|
||||
)
|
||||
}
|
||||
|
||||
function HashtagEditor({ hashtags, onChange, postId }) {
|
||||
const [newTag, setNewTag] = useState('')
|
||||
const [editIdx, setEditIdx] = useState(null)
|
||||
|
||||
@@ -440,7 +440,25 @@ function CalendarioTab({ strategy }) {
|
||||
</span>
|
||||
</div>
|
||||
<p style={{ fontSize: '0.875rem', fontWeight: 500, color: 'var(--ink)', margin: '0 0 0.2rem' }}>{slot.topic}</p>
|
||||
{slot.note && <p style={{ fontSize: '0.78rem', color: 'var(--ink-muted)', margin: 0 }}>{slot.note}</p>}
|
||||
{slot.hook && (
|
||||
<p style={{ fontSize: '0.88rem', fontWeight: 600, color: 'var(--ink)', margin: '0.4rem 0 0.15rem', fontFamily: "'Fraunces', serif" }}>
|
||||
{slot.hook}
|
||||
</p>
|
||||
)}
|
||||
{slot.idea_brief && (
|
||||
<p style={{ fontSize: '0.8rem', color: 'var(--ink-light)', margin: '0 0 0.3rem', lineHeight: 1.5 }}>
|
||||
{slot.idea_brief}
|
||||
</p>
|
||||
)}
|
||||
{!slot.hook && slot.note && <p style={{ fontSize: '0.78rem', color: 'var(--ink-muted)', margin: 0 }}>{slot.note}</p>}
|
||||
{slot.hook && (
|
||||
<Link
|
||||
to={`/content?topic=${encodeURIComponent(slot.hook)}${form.character_id ? `&character=${form.character_id}` : ''}`}
|
||||
style={{ fontSize: '0.72rem', color: 'var(--accent)', fontWeight: 600, textDecoration: 'none', marginTop: '0.4rem', display: 'inline-block' }}
|
||||
>
|
||||
Genera contenuto →
|
||||
</Link>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
|
||||
140
frontend/src/components/LandingPage.jsx
Normal file
140
frontend/src/components/LandingPage.jsx
Normal file
@@ -0,0 +1,140 @@
|
||||
import { Link } from 'react-router-dom'
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
<div style={{ minHeight: '100dvh', backgroundColor: 'var(--cream)', display: 'flex', flexDirection: 'column' }}>
|
||||
{/* Nav */}
|
||||
<nav style={{
|
||||
display: 'flex', alignItems: 'center', justifyContent: 'space-between',
|
||||
padding: '1.25rem 2rem', maxWidth: 1100, width: '100%', margin: '0 auto',
|
||||
}}>
|
||||
<div>
|
||||
<h1 style={{ fontFamily: "'Fraunces', serif", fontWeight: 700, fontSize: '1.5rem', color: 'var(--ink)', margin: 0, letterSpacing: '-0.02em' }}>
|
||||
Leopost
|
||||
</h1>
|
||||
<div style={{ width: 30, height: 3, backgroundColor: 'var(--accent)', marginTop: '0.3rem' }} />
|
||||
</div>
|
||||
<Link to="/login" style={{
|
||||
padding: '0.6rem 1.5rem', backgroundColor: 'var(--ink)', color: 'white',
|
||||
textDecoration: 'none', fontFamily: "'DM Sans', sans-serif", fontWeight: 600, fontSize: '0.875rem',
|
||||
}}>
|
||||
Accedi
|
||||
</Link>
|
||||
</nav>
|
||||
|
||||
{/* Hero */}
|
||||
<section style={{
|
||||
flex: 1, display: 'flex', flexDirection: 'column', alignItems: 'center',
|
||||
justifyContent: 'center', textAlign: 'center', padding: '3rem 1.5rem',
|
||||
maxWidth: 760, margin: '0 auto',
|
||||
}}>
|
||||
<span style={{
|
||||
display: 'inline-block', fontSize: '0.72rem', fontWeight: 600,
|
||||
letterSpacing: '0.12em', textTransform: 'uppercase', color: 'var(--accent)',
|
||||
marginBottom: '1rem',
|
||||
}}>
|
||||
Content Studio potenziato dall'AI
|
||||
</span>
|
||||
<h2 style={{
|
||||
fontFamily: "'Fraunces', serif", fontSize: 'clamp(2rem, 5vw, 3.2rem)',
|
||||
fontWeight: 700, color: 'var(--ink)', lineHeight: 1.15,
|
||||
letterSpacing: '-0.03em', margin: '0 0 1.25rem',
|
||||
}}>
|
||||
Crea contenuti social<br />
|
||||
<span style={{ color: 'var(--accent)' }}>senza pensarci.</span>
|
||||
</h2>
|
||||
<p style={{
|
||||
fontSize: 'clamp(0.95rem, 2vw, 1.1rem)', color: 'var(--ink-light)',
|
||||
lineHeight: 1.7, maxWidth: 540, margin: '0 0 2.5rem',
|
||||
}}>
|
||||
Definisci la tua voce una sola volta. L'AI genera, adatta e schedula i tuoi post
|
||||
su Instagram, Facebook e oltre. Tu approvi con un click.
|
||||
</p>
|
||||
<div style={{ display: 'flex', gap: '0.75rem', flexWrap: 'wrap', justifyContent: 'center' }}>
|
||||
<Link to="/login" style={{
|
||||
padding: '0.85rem 2rem', backgroundColor: 'var(--accent)', color: 'white',
|
||||
textDecoration: 'none', fontFamily: "'DM Sans', sans-serif",
|
||||
fontWeight: 700, fontSize: '1rem', transition: 'background-color 0.2s',
|
||||
}}>
|
||||
Inizia gratis
|
||||
</Link>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* Features */}
|
||||
<section style={{
|
||||
padding: '4rem 1.5rem', maxWidth: 1100, margin: '0 auto', width: '100%',
|
||||
}}>
|
||||
<div style={{
|
||||
display: 'grid', gridTemplateColumns: 'repeat(auto-fit, minmax(min(100%, 280px), 1fr))',
|
||||
gap: '1.5rem',
|
||||
}}>
|
||||
{[
|
||||
{ title: 'Personaggi AI', desc: 'Definisci voce, tono, target e regole. L\'AI li ricorda per sempre — non ripeterti mai più.', icon: '◎' },
|
||||
{ title: 'Multi-piattaforma', desc: 'Un click, contenuti adattati per Instagram, Facebook, YouTube e TikTok. Ognuno con il formato giusto.', icon: '◈' },
|
||||
{ title: 'Suggerimenti smart', desc: 'La dashboard propone 3 idee ogni giorno basate sul tuo profilo. Click e genera.', icon: '✦' },
|
||||
{ title: 'Impara da te', desc: 'Ogni post approvato insegna all\'AI il tuo stile. Più usi Leopost, più diventa bravo.', icon: '◇' },
|
||||
{ title: 'Calendario editoriale', desc: 'L\'AI genera un piano settimanale con tecniche narrative (PAS, AIDA, Storytelling) e awareness levels.', icon: '▣' },
|
||||
{ title: 'Hashtag intelligenti', desc: 'Set fissi per piattaforma + hashtag variabili generati dall\'AI per massimizzare la reach.', icon: '#' },
|
||||
].map((f, i) => (
|
||||
<div key={i} style={{
|
||||
padding: '1.75rem', backgroundColor: 'var(--surface)',
|
||||
border: '1px solid var(--border)', borderTop: '3px solid var(--accent)',
|
||||
}}>
|
||||
<span style={{ fontSize: '1.5rem', color: 'var(--accent)', display: 'block', marginBottom: '0.75rem' }}>{f.icon}</span>
|
||||
<h3 style={{
|
||||
fontFamily: "'Fraunces', serif", fontSize: '1.05rem', fontWeight: 600,
|
||||
color: 'var(--ink)', margin: '0 0 0.5rem',
|
||||
}}>
|
||||
{f.title}
|
||||
</h3>
|
||||
<p style={{ fontSize: '0.875rem', color: 'var(--ink-light)', lineHeight: 1.6, margin: 0 }}>
|
||||
{f.desc}
|
||||
</p>
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{/* CTA */}
|
||||
<section style={{
|
||||
padding: '3rem 1.5rem', textAlign: 'center',
|
||||
borderTop: '1px solid var(--border)',
|
||||
}}>
|
||||
<h3 style={{
|
||||
fontFamily: "'Fraunces', serif", fontSize: '1.5rem', fontWeight: 600,
|
||||
color: 'var(--ink)', margin: '0 0 0.75rem',
|
||||
}}>
|
||||
Pronto a semplificare i tuoi social?
|
||||
</h3>
|
||||
<p style={{ fontSize: '0.9rem', color: 'var(--ink-muted)', margin: '0 0 1.5rem' }}>
|
||||
Piano gratuito con 15 post al mese. Nessuna carta richiesta.
|
||||
</p>
|
||||
<Link to="/login" style={{
|
||||
padding: '0.75rem 2rem', backgroundColor: 'var(--ink)', color: 'white',
|
||||
textDecoration: 'none', fontFamily: "'DM Sans', sans-serif", fontWeight: 600, fontSize: '0.9rem',
|
||||
}}>
|
||||
Crea il tuo account
|
||||
</Link>
|
||||
</section>
|
||||
|
||||
{/* Footer */}
|
||||
<footer style={{
|
||||
padding: '1.5rem 2rem', borderTop: '1px solid var(--border)',
|
||||
display: 'flex', justifyContent: 'space-between', alignItems: 'center',
|
||||
flexWrap: 'wrap', gap: '0.5rem', maxWidth: 1100, margin: '0 auto', width: '100%',
|
||||
}}>
|
||||
<p style={{ fontSize: '0.72rem', color: 'var(--ink-muted)', margin: 0 }}>
|
||||
© {new Date().getFullYear()} Leopost
|
||||
</p>
|
||||
<div style={{ display: 'flex', gap: '1rem' }}>
|
||||
{[{ to: '/privacy', label: 'Privacy' }, { to: '/termini', label: 'Termini' }, { to: '/cookie', label: 'Cookie' }].map(l => (
|
||||
<Link key={l.to} to={l.to} style={{ fontSize: '0.72rem', color: 'var(--ink-muted)', textDecoration: 'none' }}>
|
||||
{l.label}
|
||||
</Link>
|
||||
))}
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
@@ -1,16 +1,24 @@
|
||||
import { Navigate, Outlet } from 'react-router-dom'
|
||||
import { useAuth } from '../AuthContext'
|
||||
|
||||
export default function ProtectedRoute() {
|
||||
export default function ProtectedRoute({ fallback = '/login' }) {
|
||||
const { user, loading } = useAuth()
|
||||
|
||||
if (loading) {
|
||||
return (
|
||||
<div className="min-h-screen flex items-center justify-center bg-slate-50">
|
||||
<div className="animate-spin rounded-full h-8 w-8 border-2 border-brand-500 border-t-transparent" />
|
||||
<div style={{
|
||||
minHeight: '100dvh', display: 'flex', alignItems: 'center', justifyContent: 'center',
|
||||
backgroundColor: 'var(--cream)',
|
||||
}}>
|
||||
<div style={{
|
||||
width: 32, height: 32, border: '2px solid var(--border)',
|
||||
borderTopColor: 'var(--accent)', borderRadius: '50%',
|
||||
animation: 'spin 0.8s linear infinite',
|
||||
}} />
|
||||
<style>{`@keyframes spin { to { transform: rotate(360deg) } }`}</style>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
||||
return user ? <Outlet /> : <Navigate to="/login" />
|
||||
return user ? <Outlet /> : <Navigate to={fallback} />
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user