# Generated by Django 6.0.6 on 2026-07-07 08:48

from django.db import migrations, models


class Migration(migrations.Migration):

    initial = True

    dependencies = [
    ]

    operations = [
        migrations.CreateModel(
            name='AboutPage',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('hero_title', models.CharField(default='About NewsHub', max_length=300)),
                ('hero_description', models.TextField(default='Your trusted source for breaking news and stories that matter.')),
                ('our_story_title', models.CharField(default='Our Story', max_length=300)),
                ('our_story_paragraph1', models.TextField(default='Founded in 2024, NewsHub was born from a simple idea: everyone deserves access to accurate, unbiased, and timely news. We started as a small team of passionate journalists and technologists who believed that quality journalism could thrive in the digital age.', help_text='First paragraph of our story')),
                ('our_story_paragraph2', models.TextField(default='Today, we serve millions of readers worldwide, delivering news across entertainment, society, politics, world events, and sports. Our commitment to truth and integrity remains unwavering.', help_text='Second paragraph of our story')),
                ('our_story_paragraph3', models.TextField(blank=True, help_text='Optional third paragraph of our story')),
                ('coverage_title', models.CharField(default='Our Coverage', max_length=300)),
                ('coverage_description', models.TextField(default='We cover the stories that matter across multiple categories:')),
                ('coverage_json', models.TextField(blank=True, help_text='Coverage categories as JSON array: [{"icon": "📺", "title": "Entertainment", "description": "..."}]')),
                ('what_we_do_title', models.CharField(default='What We Do', max_length=300)),
                ('what_we_do_json', models.TextField(blank=True, help_text='What we do items as JSON array: ["Breaking news alerts and live updates", ...]')),
                ('values_title', models.CharField(default='Our Values', max_length=300)),
                ('values_json', models.TextField(blank=True, help_text='Core values as JSON array: [{"icon": "✓", "title": "Accuracy", "description": "..."}]')),
                ('cta_title', models.CharField(default='Get Involved', max_length=300)),
                ('cta_description', models.TextField(default='Stay connected with NewsHub for the latest news and updates.')),
                ('cta_button_text', models.CharField(default='Read Latest News', max_length=100)),
                ('cta_button_url', models.CharField(default='/', max_length=200)),
                ('updated_at', models.DateTimeField(auto_now=True)),
            ],
            options={
                'verbose_name': 'About Page Settings',
                'verbose_name_plural': 'About Page Settings',
            },
        ),
        migrations.CreateModel(
            name='TeamMember',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('name', models.CharField(max_length=200)),
                ('role', models.CharField(max_length=200)),
                ('bio', models.TextField(blank=True)),
                ('photo', models.ImageField(blank=True, null=True, upload_to='site/team/')),
                ('order', models.IntegerField(default=0, help_text='Display order on About page')),
                ('is_active', models.BooleanField(default=True)),
            ],
            options={
                'verbose_name': 'Team Member',
                'verbose_name_plural': 'Team Members',
                'ordering': ['order', 'name'],
            },
        ),
    ]
