feat: complete launch & marketing layer
- Add marketing pages: blog, changelog, roadmap, waitlist, security, maintenance - Add GDPR cookie consent banner with preference modal - Add referral system with API routes for code generation/tracking - Add waitlist API with referral support - Add PWA support: manifest, service worker, install prompt - Add onboarding flow with 6-step guided tour - Add in-app notification center with bell dropdown - Add admin launch checklist (32 items across 8 categories) - Update landing page with trust badges - Add Open Graph image and favicon - Configure ESLint for PWA install patterns - Add LAUNCH_CHECKLIST.md with go-to-market guide Supabase migrations for: - blog_posts and blog_categories tables - waitlist_signups table - roadmap_items table - launch_checklist_items table
This commit is contained in:
@@ -0,0 +1,77 @@
|
||||
-- Blog and Newsletter Tables
|
||||
-- Migration for Route Commerce
|
||||
|
||||
CREATE TABLE IF NOT EXISTS blog_posts (
|
||||
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
slug TEXT UNIQUE NOT NULL,
|
||||
title TEXT NOT NULL,
|
||||
excerpt TEXT,
|
||||
content TEXT,
|
||||
featured_image TEXT,
|
||||
author_name TEXT NOT NULL,
|
||||
author_avatar TEXT,
|
||||
category TEXT DEFAULT 'General',
|
||||
tags TEXT[],
|
||||
published_at TIMESTAMPTZ,
|
||||
created_at TIMESTAMPTZ DEFAULT NOW(),
|
||||
updated_at TIMESTAMPTZ DEFAULT NOW(),
|
||||
published BOOLEAN DEFAULT FALSE
|
||||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS blog_resources (
|
||||
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
title TEXT NOT NULL,
|
||||
description TEXT,
|
||||
type TEXT DEFAULT 'guide' CHECK (type IN ('guide', 'case_study', 'webinar', 'template', 'checklist')),
|
||||
url TEXT,
|
||||
thumbnail TEXT,
|
||||
downloads INTEGER DEFAULT 0,
|
||||
featured BOOLEAN DEFAULT FALSE,
|
||||
created_at TIMESTAMPTZ DEFAULT NOW()
|
||||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS newsletter_subscribers (
|
||||
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
email TEXT UNIQUE NOT NULL,
|
||||
subscribed_at TIMESTAMPTZ DEFAULT NOW(),
|
||||
status TEXT DEFAULT 'active' CHECK (status IN ('active', 'unsubscribed', 'bounced')),
|
||||
source TEXT,
|
||||
unsubscribed_at TIMESTAMPTZ
|
||||
);
|
||||
|
||||
-- Indexes
|
||||
CREATE INDEX IF NOT EXISTS idx_blog_slug ON blog_posts(slug);
|
||||
CREATE INDEX IF NOT EXISTS idx_blog_published ON blog_posts(published);
|
||||
CREATE INDEX IF NOT EXISTS idx_blog_category ON blog_posts(category);
|
||||
CREATE INDEX IF NOT EXISTS idx_newsletter_email ON newsletter_subscribers(email);
|
||||
|
||||
-- Grant permissions
|
||||
GRANT SELECT, INSERT ON blog_posts TO anon;
|
||||
GRANT SELECT, INSERT ON blog_resources TO anon;
|
||||
GRANT SELECT, INSERT ON newsletter_subscribers TO anon;
|
||||
GRANT ALL ON blog_posts TO authenticated;
|
||||
GRANT ALL ON blog_resources TO authenticated;
|
||||
GRANT ALL ON newsletter_subscribers TO authenticated;
|
||||
GRANT ALL ON blog_posts TO service_role;
|
||||
GRANT ALL ON blog_resources TO service_role;
|
||||
GRANT ALL ON newsletter_subscribers TO service_role;
|
||||
|
||||
-- Seed blog posts
|
||||
INSERT INTO blog_posts (slug, title, excerpt, content, author_name, category, published_at, published) VALUES
|
||||
('getting-started-with-route-commerce', 'Getting Started with Route Commerce', 'Learn how to set up your wholesale business on Route Commerce in under 10 minutes.', '## Getting Started
|
||||
|
||||
Welcome to Route Commerce! This guide will walk you through setting up your wholesale operation...', 'Team Route Commerce', 'Guides', NOW(), TRUE),
|
||||
('maximize-produce-profitability', '5 Tips to Maximize Your Produce Profitability', 'Strategic pricing and inventory management can significantly boost your bottom line.', '## Introduction
|
||||
|
||||
Running a profitable produce operation requires more than just quality products...', 'Sarah Johnson', 'Tips', NOW(), TRUE),
|
||||
('customer-communication-best-practices', 'Best Practices for Customer Communication', 'Keep your customers informed and engaged with these communication strategies.', '## Why Communication Matters
|
||||
|
||||
Clear, timely communication builds trust and reduces missed pickups...', 'Marcus Chen', 'Marketing', NOW(), TRUE)
|
||||
ON CONFLICT DO NOTHING;
|
||||
|
||||
-- Seed resources
|
||||
INSERT INTO blog_resources (title, description, type, downloads, featured) VALUES
|
||||
('Wholesale Pricing Guide', 'Complete guide to setting profitable wholesale prices', 'guide', 342, TRUE),
|
||||
('Order Management Checklist', 'Step-by-step checklist for order fulfillment', 'checklist', 256, FALSE),
|
||||
('Customer Email Templates', 'Pre-written email templates for common scenarios', 'template', 189, FALSE)
|
||||
ON CONFLICT DO NOTHING;
|
||||
@@ -0,0 +1,22 @@
|
||||
-- Launch Checklist Progress Table
|
||||
-- Track user's launch preparation progress
|
||||
|
||||
CREATE TABLE IF NOT EXISTS launch_checklist_progress (
|
||||
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
user_id TEXT NOT NULL,
|
||||
item_id TEXT NOT NULL,
|
||||
completed BOOLEAN DEFAULT FALSE,
|
||||
completed_at TIMESTAMPTZ,
|
||||
notes TEXT,
|
||||
created_at TIMESTAMPTZ DEFAULT NOW(),
|
||||
updated_at TIMESTAMPTZ DEFAULT NOW(),
|
||||
UNIQUE(user_id, item_id)
|
||||
);
|
||||
|
||||
-- Indexes
|
||||
CREATE INDEX IF NOT EXISTS idx_checklist_user ON launch_checklist_progress(user_id);
|
||||
CREATE INDEX IF NOT EXISTS idx_checklist_completed ON launch_checklist_progress(completed) WHERE completed = TRUE;
|
||||
|
||||
-- Grant permissions
|
||||
GRANT SELECT, INSERT, UPDATE ON launch_checklist_progress TO authenticated;
|
||||
GRANT ALL ON launch_checklist_progress TO service_role;
|
||||
@@ -0,0 +1,45 @@
|
||||
-- Roadmap Tables for Feature Requests and Voting
|
||||
-- Migration for Route Commerce
|
||||
|
||||
CREATE TABLE IF NOT EXISTS roadmap_items (
|
||||
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
title TEXT NOT NULL,
|
||||
description TEXT,
|
||||
status TEXT DEFAULT 'planned' CHECK (status IN ('planned', 'in_progress', 'shipped')),
|
||||
category TEXT,
|
||||
upvotes INTEGER DEFAULT 0,
|
||||
created_by TEXT,
|
||||
created_at TIMESTAMPTZ DEFAULT NOW(),
|
||||
updated_at TIMESTAMPTZ DEFAULT NOW()
|
||||
);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS roadmap_votes (
|
||||
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
item_id UUID REFERENCES roadmap_items(id) ON DELETE CASCADE,
|
||||
visitor_id TEXT NOT NULL,
|
||||
created_at TIMESTAMPTZ DEFAULT NOW(),
|
||||
UNIQUE(item_id, visitor_id)
|
||||
);
|
||||
|
||||
-- Indexes
|
||||
CREATE INDEX IF NOT EXISTS idx_roadmap_status ON roadmap_items(status);
|
||||
CREATE INDEX IF NOT EXISTS idx_roadmap_category ON roadmap_items(category);
|
||||
CREATE INDEX IF NOT EXISTS idx_roadmap_upvotes ON roadmap_items(upvotes DESC);
|
||||
CREATE INDEX IF NOT EXISTS idx_roadmap_votes_item ON roadmap_votes(item_id);
|
||||
|
||||
-- Grant permissions
|
||||
GRANT SELECT ON roadmap_items TO anon;
|
||||
GRANT SELECT, INSERT ON roadmap_votes TO anon;
|
||||
GRANT ALL ON roadmap_items TO authenticated;
|
||||
GRANT ALL ON roadmap_votes TO authenticated;
|
||||
GRANT ALL ON roadmap_items TO service_role;
|
||||
GRANT ALL ON roadmap_votes TO service_role;
|
||||
|
||||
-- Seed some initial items
|
||||
INSERT INTO roadmap_items (title, description, status, category, upvotes) VALUES
|
||||
('Mobile App (iOS & Android)', 'Native apps for field workers and delivery drivers', 'in_progress', 'Mobile', 234),
|
||||
('SMS Campaigns', 'Text message marketing and notifications', 'planned', 'Communication', 98),
|
||||
('Route Optimization', 'AI-powered route planning for deliveries', 'planned', 'Logistics', 167),
|
||||
('Customer Loyalty Program', 'Points, rewards, and referral tracking', 'planned', 'Marketing', 112),
|
||||
('POS Integration (Clover, Toast)', 'Additional POS system integrations', 'planned', 'Integrations', 76)
|
||||
ON CONFLICT DO NOTHING;
|
||||
@@ -0,0 +1,30 @@
|
||||
-- Waitlist and Early Access Signup System
|
||||
-- Migration for Route Commerce
|
||||
|
||||
CREATE TABLE IF NOT EXISTS waitlist (
|
||||
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
||||
email TEXT UNIQUE NOT NULL,
|
||||
name TEXT,
|
||||
referral_source TEXT,
|
||||
referred_by TEXT,
|
||||
created_at TIMESTAMPTZ DEFAULT NOW(),
|
||||
status TEXT DEFAULT 'pending' CHECK (status IN ('pending', 'converted', 'archived'))
|
||||
);
|
||||
|
||||
-- Index for email lookups
|
||||
CREATE INDEX IF NOT EXISTS idx_waitlist_email ON waitlist(email);
|
||||
CREATE INDEX IF NOT EXISTS idx_waitlist_status ON waitlist(status);
|
||||
CREATE INDEX IF NOT EXISTS idx_waitlist_created ON waitlist(created_at DESC);
|
||||
|
||||
-- Grant permissions
|
||||
GRANT SELECT, INSERT ON waitlist TO anon;
|
||||
GRANT SELECT, INSERT ON waitlist TO authenticated;
|
||||
GRANT SELECT, INSERT ON waitlist TO service_role;
|
||||
|
||||
-- Comment on table
|
||||
COMMENT ON TABLE waitlist IS 'Early access signup for Route Commerce platform';
|
||||
COMMENT ON COLUMN waitlist.email IS 'Unique email address';
|
||||
COMMENT ON COLUMN waitlist.name IS 'Optional full name';
|
||||
COMMENT ON COLUMN waitlist.referral_source IS 'How they heard about us';
|
||||
COMMENT ON COLUMN waitlist.referred_by IS 'Email of person who referred them';
|
||||
COMMENT ON COLUMN waitlist.status IS 'pending, converted (signed up), archived';
|
||||
Reference in New Issue
Block a user