# Generated by Django 5.0 on 2025-12-19 13:24

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('frontend', '0006_siteconfiguration_enable_ai_seo'),
    ]

    operations = [
        migrations.AddField(
            model_name='siteconfiguration',
            name='hero_background_image',
            field=models.ImageField(blank=True, help_text='Background image for the hero section', null=True, upload_to='hero/'),
        ),
        migrations.AddField(
            model_name='siteconfiguration',
            name='hero_button_link',
            field=models.CharField(default='/products/', help_text='Link for the primary CTA button', max_length=200),
        ),
        migrations.AddField(
            model_name='siteconfiguration',
            name='hero_button_text',
            field=models.CharField(default='Shop Now', help_text='Text for the primary CTA button', max_length=50),
        ),
        migrations.AddField(
            model_name='siteconfiguration',
            name='hero_subtitle',
            field=models.TextField(default='Your AI-Powered Shopping Destination', help_text='Subtitle/description for the hero section'),
        ),
        migrations.AddField(
            model_name='siteconfiguration',
            name='hero_title',
            field=models.CharField(default='Welcome to AiBiMagics', help_text='Main heading for the hero section', max_length=200),
        ),
    ]
