Task #152
openAbout Page, Help Page & Home Page UI Modification
0%
Description
The About Page displays information about the Viswakarma Matrimony platform, including its purpose, mission, and trust details. This page helps build user confidence and provides an overview of the service.
Table
id INT PK Unique identifier
title VARCHAR(200) — Section title
description TEXT — Section content
display_order INT — Order of display
is_active BOOLEAN — Status
created_at DATETIME — Created timestamp
updated_at DATETIME — Updated timestamp
Validations
title
- Mandatory
- Minimum 3 characters
- Maximum 200 characters
description
- Mandatory
- Minimum 10 characters
- No script or HTML injection allowed
display_order
- Must be positive integer
- No duplicate display_order
is_active
- Default value: true
Descriptions
The Help Page provides frequently asked questions (FAQ) and support information to help users understand how to use the system.
Table
id INT PK Unique FAQ ID
question VARCHAR(300) — FAQ question
answer TEXT — FAQ answer
display_order INT — Order of display
is_active BOOLEAN — Status
created_at DATETIME — Created date
updated_at DATETIME — Updated date
Validations
question
- Mandatory
- Minimum 5 characters
- Maximum 300 characters
- Must be unique
answer
- Mandatory
- Minimum 10 characters
display_order
- Must be positive integer
is_active
- Default value: true
Description
The Home Page is the first screen users see when visiting the website. It contains the main banner, platform tagline, and call-to-action buttons.
Table
id INT PK Unique ID
section_name VARCHAR(100) — Section name
title VARCHAR(200) — Title text
subtitle VARCHAR(300) — Subtitle text
button_text VARCHAR(100) — Button label
button_link VARCHAR(200) — Button URL
is_active BOOLEAN — Status
created_at DATETIME — Created date
updated_at DATETIME — Updated date
Validations
section_name
- Mandatory
- Must be unique
title
- Mandatory
- Minimum 3 characters
subtitle
- Optional
- Maximum 300 characters
button_text
- Mandatory
- Example: "Register Now"
button_link
- Mandatory
- Must be valid route (/register, /login)
is_active
- Default value: true
No data to display