diff --git a/src/index.css b/src/index.css index 8c1557f..4f72df0 100644 --- a/src/index.css +++ b/src/index.css @@ -180,6 +180,11 @@ All colors MUST be HSL. @apply text-lg font-bold mt-4 mb-2; } + /* Paragraphs */ + .prose p { + @apply my-4; + } + /* Lists */ .prose ul { @apply list-disc pl-6 space-y-1 my-4; diff --git a/supabase/migrations/20241225_add_event_start_to_products.sql b/supabase/migrations/20241225_add_event_start_to_products.sql new file mode 100644 index 0000000..e0c6e73 --- /dev/null +++ b/supabase/migrations/20241225_add_event_start_to_products.sql @@ -0,0 +1,7 @@ +-- Add event_start column to products table +-- This column stores the start date/time for webinar and bootcamp events +ALTER TABLE products +ADD COLUMN event_start TIMESTAMP WITH TIME ZONE; + +-- Add comment for documentation +COMMENT ON COLUMN products.event_start IS 'Start date/time for webinars and bootcamps'; diff --git a/supabase/migrations/20241225_add_webinar_duration.sql b/supabase/migrations/20241225_add_webinar_duration.sql new file mode 100644 index 0000000..2af3852 --- /dev/null +++ b/supabase/migrations/20241225_add_webinar_duration.sql @@ -0,0 +1,7 @@ +-- Add duration_minutes column to products table +-- This column stores the duration in minutes for webinar and consulting products +ALTER TABLE products +ADD COLUMN duration_minutes INTEGER; + +-- Add comment for documentation +COMMENT ON COLUMN products.duration_minutes IS 'Duration in minutes for webinars and consulting sessions';