Files
HRM-System/app/Models/LandingPageSetting.php
2026-04-13 08:16:56 +08:00

517 lines
35 KiB
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class LandingPageSetting extends Model
{
protected $fillable = [
'company_name',
'contact_email',
'contact_phone',
'contact_address',
'config_sections'
];
protected $attributes = [
'company_name' => '',
'contact_email' => '',
'contact_phone' => '',
'contact_address' => ''
];
protected $casts = [
'config_sections' => 'array'
];
public static function getSettings()
{
$settings = self::first();
if (!$settings) {
$defaultConfig = isSaas() ? self::getSaasConfig() : self::getNonSaasConfig();
$companyName = isSaas() ? 'HRM SaaS' : 'HRM';
$settings = self::create([
'company_name' => $companyName,
'contact_email' => 'support@hrm.com',
'contact_phone' => '+1 (555) 123-4567',
'contact_address' => 'San Francisco, CA',
'config_sections' => $defaultConfig
]);
}
return $settings;
}
private static function getSaasConfig()
{
return [
'sections' => [
[
'key' => 'header',
'transparent' => false,
'background_color' => '#ffffff',
'text_color' => '#1f2937',
'button_style' => 'gradient'
],
[
'key' => 'hero',
'title' => 'Simplify HR Management Effortlessly',
'subtitle' => 'Manage employees, payroll, attendance, and more in one powerful platform.',
'announcement_text' => '📢 New: Smart Leave & Attendance Tracking Launched!',
'primary_button_text' => 'Start Free Trial',
'secondary_button_text' => 'Login',
'image' => '',
'background_color' => '#f8fafc',
'text_color' => '#1f2937',
'layout' => 'image-right',
'height' => 600,
'stats' => [
['value' => '10K+', 'label' => 'Active Users'],
['value' => '50+', 'label' => 'Countries'],
['value' => '99%', 'label' => 'Satisfaction']
],
],
[
'key' => 'features',
'title' => 'Empowering Businesses with Smart HR Solutions',
'description' => 'All-in-one platform to manage employees, payroll, attendance, and performance with ease.',
'background_color' => '#ffffff',
'layout' => 'grid',
'columns' => 3,
'image' => '',
'show_icons' => true,
'features_list' => [
['title' => 'Employee Management', 'description' => 'Centralized profiles with personal, job, and document details.', 'icon' => 'users'],
['title' => 'Payroll Automation', 'description' => 'Generate accurate payslips with tax, allowances, and deductions.', 'icon' => 'dollar-sign'],
['title' => 'Leave & Attendance', 'description' => 'Smart tracking of leaves, shifts, and attendance logs.', 'icon' => 'clock'],
['title' => 'Recruitment & Onboarding', 'description' => 'Streamline hiring with applicant tracking and digital onboarding.', 'icon' => 'user-plus'],
['title' => 'Performance Management', 'description' => 'Set goals, run evaluations, and track employee growth.', 'icon' => 'award'],
['title' => 'Reports & Analytics', 'description' => 'Get actionable insights on workforce productivity and HR metrics.', 'icon' => 'bar-chart-2'],
]
],
[
'key' => 'screenshots',
'title' => 'See HRM SaaS in Action',
'subtitle' => 'Discover how our modern HRM SaaS platform helps you manage employees, payroll, attendance, and performance — all in one place.',
'screenshots_list' => [
['src' => '/screenshots/saas/dashboard.png', 'alt' => 'HRM Dashboard Overview', 'title' => 'Dashboard Overview', 'description' => 'Get a complete overview of employee data, payroll, and HR activities in one unified dashboard.'],
['src' => '/screenshots/saas/employee-management.png', 'alt' => 'Employee Management Module', 'title' => 'Employee Management', 'description' => 'Centralized employee profiles with personal details, documents, and job history.'],
['src' => '/screenshots/saas/payroll-payslip.png', 'alt' => 'Payroll Automation', 'title' => 'Payroll & Payslips', 'description' => 'Automated payroll processing with tax calculations, allowances, and downloadable payslips.'],
['src' => '/screenshots/saas/leave.png', 'alt' => 'Leave Management', 'title' => 'Leave Management', 'description' => 'Easily apply, approve, and track employee leave requests with proper workflows and policies.'],
['src' => '/screenshots/saas/attendance.png', 'alt' => 'Attendance Tracking', 'title' => 'Attendance Tracking', 'description' => 'Monitor employee check-ins, check-outs, and shifts with automated attendance logs.'],
['src' => '/screenshots/saas/recruitment.png', 'alt' => 'Recruitment & Onboarding', 'title' => 'Recruitment & Onboarding', 'description' => 'Streamline hiring with applicant tracking and digital onboarding.'],
]
],
[
'key' => 'why_choose_us',
'title' => 'Why Choose HRM SaaS?',
'subtitle' => 'Smart, simple, and powerful HR solutions for every business.',
'reasons' => [
['title' => 'All-in-One HR Solution', 'description' => 'Manage employees, payroll, attendance, recruitment, and performance from a single platform.', 'icon' => 'layers'],
['title' => 'Time-Saving Automation', 'description' => 'Automate repetitive HR tasks to focus on strategic decision-making.', 'icon' => 'clock'],
['title' => 'Data-Driven Insights', 'description' => 'Make informed decisions with advanced analytics and reports.', 'icon' => 'bar-chart'],
['title' => 'Secure & Reliable', 'description' => 'Keep sensitive HR data safe with enterprise-grade security.', 'icon' => 'shield']
],
'stats' => [
['value' => '500+', 'label' => 'Companies Using HRM', 'color' => 'blue'],
['value' => '20K+', 'label' => 'Employees Managed', 'color' => 'green'],
['value' => '98%', 'label' => 'Customer Satisfaction', 'color' => 'orange']
]
],
[
'key' => 'about',
'title' => 'About HRM SaaS',
'description' => 'We are passionate about simplifying HR management for businesses of all sizes.',
'story_title' => 'We are passionate about simplifying HR management for businesses of all sizes.',
'story_content' => 'Founded by HR and tech enthusiasts, HRM SaaS was created to replace cumbersome spreadsheets and manual processes with a modern, all-in-one HR platform.',
'image' => '',
'background_color' => '#f9fafb',
'layout' => 'image-right',
'stats' => [
['value' => '3+ Years', 'label' => 'Experience', 'color' => 'blue'],
['value' => '500+', 'label' => 'Companies Served', 'color' => 'green'],
['value' => '20K+', 'label' => 'Employees Managed', 'color' => 'purple']
]
],
[
'key' => 'team',
'title' => 'Meet Our Team',
'subtitle' => 'We\'re a dedicated team of HR and technology experts.',
'cta_title' => 'Want to Join Our Team?',
'cta_description' => 'We\'re always looking for talented individuals to shape the future of HR management.',
'cta_button_text' => 'View Open Positions',
'members' => [
['name' => 'John Doe', 'role' => 'CEO & Founder', 'bio' => 'Experienced HR tech entrepreneur passionate about building intuitive HR solutions.', 'image' => '', 'linkedin' => '#', 'email' => 'john@example.com'],
['name' => 'Jane Smith', 'role' => 'CTO', 'bio' => 'Leads the tech team to create scalable and secure HR platforms.', 'image' => '', 'linkedin' => '#', 'email' => 'jane@example.com'],
['name' => 'Michael Lee', 'role' => 'Head of Product', 'bio' => 'Designs user-centric features to simplify HR processes.', 'image' => '', 'linkedin' => '#', 'email' => 'michael@example.com'],
['name' => 'Emily Davis', 'role' => 'HR Manager', 'bio' => 'Oversees employee engagement, recruitment, and HR operations.', 'image' => '', 'linkedin' => '#', 'email' => 'emily@example.com']
]
],
[
'key' => 'testimonials',
'title' => 'What Our Clients Say',
'subtitle' => 'Hear from HR leaders who trust our platform.',
'trust_title' => 'Trusted by HR Professionals Worldwide',
'trust_stats' => [
['value' => '4.9/5', 'label' => 'Average Rating', 'color' => 'blue'],
['value' => '500+', 'label' => 'Companies Served', 'color' => 'green']
],
'testimonials' => [
['name' => 'Alice Johnson', 'role' => 'HR Manager', 'company' => 'GlobalTech Ltd.', 'content' => 'HRM has made managing employee records and attendance effortless. Our HR team saves hours every week!', 'rating' => 5],
['name' => 'Robert Smith', 'role' => 'Operations Head', 'company' => 'Innovate Solutions', 'content' => 'The payroll automation is incredibly accurate and easy to use. No more manual calculations or errors!', 'rating' => 5],
['name' => 'Maria Davis', 'role' => 'CEO', 'company' => 'BrightFuture Corp.', 'content' => 'From recruitment to performance management, HRM covers everything we need in one platform.', 'rating' => 5],
['name' => 'David Lee', 'role' => 'Talent Acquisition Lead', 'company' => 'NextGen Enterprises', 'content' => 'Recruitment and onboarding have never been smoother. HRM platform is intuitive and efficient.', 'rating' => 5],
['name' => 'Samantha Green', 'role' => 'Payroll Specialist', 'company' => 'BrightSolutions Inc.', 'content' => 'Payroll processing is now quick and error-free thanks to HRM. It has transformed our monthly workflow.', 'rating' => 5],
['name' => 'Michael Brown', 'role' => 'HR Coordinator', 'company' => 'TechWave Ltd.', 'content' => 'The performance management module helps us track employee goals and progress effortlessly.', 'rating' => 5]
]
],
[
'key' => 'plans',
'title' => 'Choose Your HRM SaaS Plan',
'subtitle' => 'Start with our free plan and upgrade as your team grows.',
'faq_text' => 'Have questions about our plans? Reach out to our sales team for guidance.'
],
[
'key' => 'faq',
'title' => 'Frequently Asked Questions',
'subtitle' => 'Got questions? We\'ve got answers.',
'cta_text' => 'Still have questions?',
'button_text' => 'Contact Support',
'faqs' => [
['question' => 'How does HRM SaaS work?', 'answer' => 'HRM SaaS is an all-in-one HR platform that helps you manage employees, payroll, attendance, recruitment, and performance efficiently.'],
['question' => 'Can I automate payroll and leave tracking?', 'answer' => 'Yes! HRM SaaS allows you to automate payroll calculations, generate payslips, and track employee leaves and attendance seamlessly.'],
['question' => 'Is my employee data secure?', 'answer' => 'Absolutely. HRM SaaS uses enterprise-grade security measures to keep all sensitive HR data safe and confidential.'],
['question' => 'Can I manage recruitment and onboarding?', 'answer' => 'Yes, HRM SaaS provides applicant tracking, interview management, and digital onboarding tools to simplify hiring.'],
['question' => 'Does HRM SaaS support performance evaluations?', 'answer' => 'Yes, you can set goals, track KPIs, and run performance reviews directly within the platform.'],
['question' => 'Can HRM SaaS generate HR reports?', 'answer' => 'HRM offers advanced analytics and reporting features to give insights on attendance, payroll, and workforce performance.'],
['question' => 'What plans are available and can I upgrade anytime?', 'answer' => 'We offer flexible plans for different team sizes. You can start with the free plan and upgrade as your organization grows.']
]
],
[
'key' => 'newsletter',
'title' => 'Stay Updated with HRM SaaS',
'subtitle' => 'Get the latest updates, HR tips, and feature announcements.',
'privacy_text' => 'No spam, unsubscribe at any time.',
'benefits' => [
['icon' => '📧', 'title' => 'Weekly Updates', 'description' => 'Stay informed about the latest HRM SaaS features and improvements.'],
['icon' => '💡', 'title' => 'HR Insights', 'description' => 'Get tips and best practices to optimize your HR operations.'],
['icon' => '📊', 'title' => 'Reports & Trends', 'description' => 'Receive analytics insights and industry trends directly to your inbox.']
]
],
[
'key' => 'contact',
'title' => 'Get in Touch',
'subtitle' => 'Have questions about HRM SaaS? We\'d love to hear from you.',
'form_title' => 'Send us a Message',
'info_title' => 'Contact Information',
'info_description' => 'We\'re here to help and answer any questions you might have about managing your HR processes efficiently.',
'layout' => 'split',
'background_color' => '#f9fafb'
],
[
'key' => 'footer',
'description' => 'Simplifying HR management with an all-in-one modern platform.',
'newsletter_title' => 'Stay Updated',
'newsletter_subtitle' => 'Join our newsletter for HR tips and product updates',
'links' => [
'product' => [
['name' => 'Features', 'href' => '#features'],
['name' => 'Pricing', 'href' => '#pricing']
],
'company' => [
['name' => 'About Us', 'href' => '#about'],
['name' => 'Contact', 'href' => '#contact']
],
'support' => [
['name' => 'Help Center', 'href' => '#help-center'],
['name' => 'FAQ', 'href' => '#faq'],
['name' => 'Refund Policy', 'href' => '#refund-policy']
],
'legal' => [
['name' => 'Terms of Service', 'href' => '#terms'],
['name' => 'Privacy Policy', 'href' => '#privacy']
]
],
'social_links' => [
['name' => 'Facebook', 'icon' => 'Facebook', 'href' => '#'],
['name' => 'Twitter', 'icon' => 'Twitter', 'href' => '#'],
['name' => 'LinkedIn', 'icon' => 'Linkedin', 'href' => '#']
],
'section_titles' => [
'product' => 'Product',
'company' => 'Company'
]
]
],
'theme' => [
'primary_color' => '#10b77f',
'secondary_color' => '#ffffff',
'accent_color' => '#f7f7f7',
'logo_light' => '',
'logo_dark' => '',
'favicon' => ''
],
'seo' => [
'meta_title' => 'HRM SaaS - All-in-One HR Management Software',
'meta_description' => 'Simplify employee management, payroll, attendance, recruitment, and performance with HRM SaaS, a modern HR platform.',
'meta_keywords' => 'HR software, HRM, employee management, payroll, attendance tracking, recruitment, performance management'
],
'custom_css' => '',
'custom_js' => '',
'section_order' => ['header', 'hero', 'features', 'screenshots', 'why_choose_us', 'about', 'team', 'testimonials', 'plans', 'faq', 'newsletter', 'contact', 'footer'],
'section_visibility' => [
'header' => true,
'hero' => true,
'features' => true,
'screenshots' => true,
'why_choose_us' => true,
'about' => true,
'team' => true,
'testimonials' => true,
'plans' => true,
'faq' => true,
'newsletter' => true,
'contact' => true,
'footer' => true
]
];
}
private static function getNonSaasConfig()
{
return [
'sections' => [
[
'key' => 'header',
'transparent' => false,
'background_color' => '#ffffff',
'text_color' => '#1f2937',
'button_style' => 'gradient'
],
[
'key' => 'hero',
'title' => 'Simplify HR Management Effortlessly',
'subtitle' => 'Manage employees, payroll, attendance, and more in one powerful platform.',
'announcement_text' => '📢 New: Smart Leave & Attendance Tracking Launched!',
'primary_button_text' => 'Get Started',
'secondary_button_text' => 'Login',
'image' => '',
'background_color' => '#f8fafc',
'text_color' => '#1f2937',
'layout' => 'image-right',
'height' => 600,
'stats' => [
['value' => '10K+', 'label' => 'Active Users'],
['value' => '50+', 'label' => 'Countries'],
['value' => '99%', 'label' => 'Satisfaction']
],
],
[
'key' => 'features',
'title' => 'Empowering Businesses with Smart HR Solutions',
'description' => 'All-in-one platform to manage employees, payroll, attendance, and performance with ease.',
'background_color' => '#ffffff',
'layout' => 'grid',
'columns' => 3,
'image' => '',
'show_icons' => true,
'features_list' => [
['title' => 'Employee Management', 'description' => 'Centralized profiles with personal, job, and document details.', 'icon' => 'users'],
['title' => 'Payroll Automation', 'description' => 'Generate accurate payslips with tax, allowances, and deductions.', 'icon' => 'dollar-sign'],
['title' => 'Leave & Attendance', 'description' => 'Smart tracking of leaves, shifts, and attendance logs.', 'icon' => 'clock'],
['title' => 'Recruitment & Onboarding', 'description' => 'Streamline hiring with applicant tracking and digital onboarding.', 'icon' => 'user-plus'],
['title' => 'Performance Management', 'description' => 'Set goals, run evaluations, and track employee growth.', 'icon' => 'award'],
['title' => 'Reports & Analytics', 'description' => 'Get actionable insights on workforce productivity and HR metrics.', 'icon' => 'bar-chart-2'],
]
],
[
'key' => 'screenshots',
'title' => 'See HRM in Action',
'subtitle' => 'Discover how our modern HRM platform helps you manage employees, payroll, attendance, and performance — all in one place.',
'screenshots_list' => [
['src' => '/screenshots/non-saas/dashboard.png', 'alt' => 'HRM Dashboard Overview', 'title' => 'Dashboard Overview', 'description' => 'Get a complete overview of employee data, payroll, and HR activities in one unified dashboard.'],
['src' => '/screenshots/non-saas/employee-management.png', 'alt' => 'Employee Management Module', 'title' => 'Employee Management', 'description' => 'Centralized employee profiles with personal details, documents, and job history.'],
['src' => '/screenshots/non-saas/payroll-payslip.png', 'alt' => 'Payroll Automation', 'title' => 'Payroll & Payslips', 'description' => 'Automated payroll processing with tax calculations, allowances, and downloadable payslips.'],
['src' => '/screenshots/non-saas/leave.png', 'alt' => 'Leave Management', 'title' => 'Leave Management', 'description' => 'Easily apply, approve, and track employee leave requests with proper workflows and policies.'],
['src' => '/screenshots/non-saas/attendance.png', 'alt' => 'Attendance Tracking', 'title' => 'Attendance Tracking', 'description' => 'Monitor employee check-ins, check-outs, and shifts with automated attendance logs.'],
['src' => '/screenshots/non-saas/recruitment.png', 'alt' => 'Recruitment & Onboarding', 'title' => 'Recruitment & Onboarding', 'description' => 'Streamline hiring with applicant tracking and digital onboarding.'],
]
],
[
'key' => 'why_choose_us',
'title' => 'Why Choose HRM?',
'subtitle' => 'Smart, simple, and powerful HR solutions for every business.',
'reasons' => [
['title' => 'All-in-One HR Solution', 'description' => 'Manage employees, payroll, attendance, recruitment, and performance from a single platform.', 'icon' => 'layers'],
['title' => 'Time-Saving Automation', 'description' => 'Automate repetitive HR tasks to focus on strategic decision-making.', 'icon' => 'clock'],
['title' => 'Data-Driven Insights', 'description' => 'Make informed decisions with advanced analytics and reports.', 'icon' => 'bar-chart'],
['title' => 'Secure & Reliable', 'description' => 'Keep sensitive HR data safe with enterprise-grade security.', 'icon' => 'shield']
],
'stats' => [
['value' => '500+', 'label' => 'Companies Using HRM', 'color' => 'blue'],
['value' => '20K+', 'label' => 'Employees Managed', 'color' => 'green'],
['value' => '98%', 'label' => 'Customer Satisfaction', 'color' => 'orange']
]
],
[
'key' => 'about',
'title' => 'About HRM',
'description' => 'We are passionate about simplifying HR management for businesses of all sizes.',
'story_title' => 'We are passionate about simplifying HR management for businesses of all sizes.',
'story_content' => 'Founded by HR and tech enthusiasts, HRM was created to replace cumbersome spreadsheets and manual processes with a modern, all-in-one HR platform.',
'image' => '',
'background_color' => '#f9fafb',
'layout' => 'image-right',
'stats' => [
['value' => '3+ Years', 'label' => 'Experience', 'color' => 'blue'],
['value' => '500+', 'label' => 'Companies Served', 'color' => 'green'],
['value' => '20K+', 'label' => 'Employees Managed', 'color' => 'purple']
]
],
[
'key' => 'team',
'title' => 'Meet Our Team',
'subtitle' => 'We\'re a dedicated team of HR and technology experts.',
'cta_title' => 'Want to Join Our Team?',
'cta_description' => 'We\'re always looking for talented individuals to shape the future of HR management.',
'cta_button_text' => 'View Open Positions',
'members' => [
['name' => 'John Doe', 'role' => 'CEO & Founder', 'bio' => 'Experienced HR tech entrepreneur passionate about building intuitive HR solutions.', 'image' => '', 'linkedin' => '#', 'email' => 'john@example.com'],
['name' => 'Jane Smith', 'role' => 'CTO', 'bio' => 'Leads the tech team to create scalable and secure HR platforms.', 'image' => '', 'linkedin' => '#', 'email' => 'jane@example.com'],
['name' => 'Michael Lee', 'role' => 'Head of Product', 'bio' => 'Designs user-centric features to simplify HR processes.', 'image' => '', 'linkedin' => '#', 'email' => 'michael@example.com'],
['name' => 'Emily Davis', 'role' => 'HR Manager', 'bio' => 'Oversees employee engagement, recruitment, and HR operations.', 'image' => '', 'linkedin' => '#', 'email' => 'emily@example.com']
]
],
[
'key' => 'testimonials',
'title' => 'What Our Clients Say',
'subtitle' => 'Hear from HR leaders who trust our platform.',
'trust_title' => 'Trusted by HR Professionals Worldwide',
'trust_stats' => [
['value' => '4.9/5', 'label' => 'Average Rating', 'color' => 'blue'],
['value' => '500+', 'label' => 'Companies Served', 'color' => 'green']
],
'testimonials' => [
['name' => 'Alice Johnson', 'role' => 'HR Manager', 'company' => 'GlobalTech Ltd.', 'content' => 'HRM has made managing employee records and attendance effortless. Our HR team saves hours every week!', 'rating' => 5],
['name' => 'Robert Smith', 'role' => 'Operations Head', 'company' => 'Innovate Solutions', 'content' => 'The payroll automation is incredibly accurate and easy to use. No more manual calculations or errors!', 'rating' => 5],
['name' => 'Maria Davis', 'role' => 'CEO', 'company' => 'BrightFuture Corp.', 'content' => 'From recruitment to performance management, HRM covers everything we need in one platform.', 'rating' => 5],
['name' => 'David Lee', 'role' => 'Talent Acquisition Lead', 'company' => 'NextGen Enterprises', 'content' => 'Recruitment and onboarding have never been smoother. HRM platform is intuitive and efficient.', 'rating' => 5],
['name' => 'Samantha Green', 'role' => 'Payroll Specialist', 'company' => 'BrightSolutions Inc.', 'content' => 'Payroll processing is now quick and error-free thanks to HRM. It has transformed our monthly workflow.', 'rating' => 5],
['name' => 'Michael Brown', 'role' => 'HR Coordinator', 'company' => 'TechWave Ltd.', 'content' => 'The performance management module helps us track employee goals and progress effortlessly.', 'rating' => 5]
]
],
[
'key' => 'plans',
'title' => 'Get Started with HRM',
'subtitle' => 'Contact us to learn more about our HR management solution.',
'faq_text' => 'Have questions? Contact our team for more information.'
],
[
'key' => 'faq',
'title' => 'Frequently Asked Questions',
'subtitle' => 'Got questions? We\'ve got answers.',
'cta_text' => 'Still have questions?',
'button_text' => 'Contact Support',
'faqs' => [
['question' => 'How does HRM work?', 'answer' => 'HRM is an all-in-one HR platform that helps you manage employees, payroll, attendance, recruitment, and performance efficiently.'],
['question' => 'Can I automate payroll and leave tracking?', 'answer' => 'Yes! HRM allows you to automate payroll calculations, generate payslips, and track employee leaves and attendance seamlessly.'],
['question' => 'Is my employee data secure?', 'answer' => 'Absolutely. HRM uses enterprise-grade security measures to keep all sensitive HR data safe and confidential.'],
['question' => 'Can I manage recruitment and onboarding?', 'answer' => 'Yes, HRM provides applicant tracking, interview management, and digital onboarding tools to simplify hiring.'],
['question' => 'Does HRM support performance evaluations?', 'answer' => 'Yes, you can set goals, track KPIs, and run performance reviews directly within the platform.'],
['question' => 'Can HRM generate HR reports?', 'answer' => 'HRM offers advanced analytics and reporting features to give insights on attendance, payroll, and workforce performance.'],
['question' => 'How can I get started?', 'answer' => 'Contact our team to learn more about implementing HRM for your organization.']
]
],
[
'key' => 'newsletter',
'title' => 'Stay Updated with HRM',
'subtitle' => 'Get the latest updates, HR tips, and feature announcements.',
'privacy_text' => 'No spam, unsubscribe at any time.',
'benefits' => [
['icon' => '📧', 'title' => 'Weekly Updates', 'description' => 'Stay informed about the latest HRM features and improvements.'],
['icon' => '💡', 'title' => 'HR Insights', 'description' => 'Get tips and best practices to optimize your HR operations.'],
['icon' => '📊', 'title' => 'Reports & Trends', 'description' => 'Receive analytics insights and industry trends directly to your inbox.']
]
],
[
'key' => 'contact',
'title' => 'Get in Touch',
'subtitle' => 'Have questions about HRM? We\'d love to hear from you.',
'form_title' => 'Send us a Message',
'info_title' => 'Contact Information',
'info_description' => 'We\'re here to help and answer any questions you might have about managing your HR processes efficiently.',
'layout' => 'split',
'background_color' => '#f9fafb'
],
[
'key' => 'footer',
'description' => 'Simplifying HR management with an all-in-one modern platform.',
'newsletter_title' => 'Stay Updated',
'newsletter_subtitle' => 'Join our newsletter for HR tips and product updates',
'links' => [
'product' => [
['name' => 'Features', 'href' => '#features'],
['name' => 'Pricing', 'href' => '#pricing']
],
'company' => [
['name' => 'About Us', 'href' => '#about'],
['name' => 'Contact', 'href' => '#contact']
],
'support' => [
['name' => 'Help Center', 'href' => '#help-center'],
['name' => 'FAQ', 'href' => '#faq'],
['name' => 'Refund Policy', 'href' => '#refund-policy']
],
'legal' => [
['name' => 'Terms of Service', 'href' => '#terms'],
['name' => 'Privacy Policy', 'href' => '#privacy']
]
],
'social_links' => [
['name' => 'Facebook', 'icon' => 'Facebook', 'href' => '#'],
['name' => 'Twitter', 'icon' => 'Twitter', 'href' => '#'],
['name' => 'LinkedIn', 'icon' => 'Linkedin', 'href' => '#']
],
'section_titles' => [
'product' => 'Product',
'company' => 'Company'
]
]
],
'theme' => [
'primary_color' => '#10b77f',
'secondary_color' => '#ffffff',
'accent_color' => '#f7f7f7',
'logo_light' => '',
'logo_dark' => '',
'favicon' => ''
],
'seo' => [
'meta_title' => 'HRM - All-in-One HR Management Software',
'meta_description' => 'Simplify employee management, payroll, attendance, recruitment, and performance with HRM, a modern HR platform.',
'meta_keywords' => 'HR software, HRM, employee management, payroll, attendance tracking, recruitment, performance management'
],
'custom_css' => '',
'custom_js' => '',
'section_order' => ['header', 'hero', 'features', 'screenshots', 'why_choose_us', 'about', 'team', 'testimonials', 'plans', 'faq', 'newsletter', 'contact', 'footer'],
'section_visibility' => [
'header' => true,
'hero' => true,
'features' => true,
'screenshots' => true,
'why_choose_us' => true,
'about' => true,
'team' => true,
'testimonials' => true,
'plans' => false,
'faq' => true,
'newsletter' => true,
'contact' => true,
'footer' => true
]
];
}
}