@extends('layouts.app') @section('content') {{-- Render sections dynamically based on database order --}} @foreach($pageSections as $section) @if($section->section_key === 'hero') {{-- Modern Hero Section with Mesh Gradient --}}

{{ $section->title ?? $settings['hero_title'] ?? 'Innovating Your Digital Future' }}

{{ $section->description ?? $settings['hero_subtitle'] ?? 'We build scalable, secure, and high-performance software solutions tailored to your business needs.' }}

@elseif($section->section_key === 'about') {{-- Minimalist About Section --}}
About Us

10+

Years Excellence

Who We Are

{{ $section->title ?? 'Crafting Digital Excellence' }}

{{ $section->description ?? ($settings['site_name'] ?? 'TechNova') . ' is a premier software development company dedicated to transforming ideas into powerful digital reality.' }}

{{ $settings['about_secondary_description'] ?? 'Founded in 2015, we have helped hundreds of businesses streamline their operations and engage their customers through cutting-edge technology.' }}

Advanced Tech

Utilizing the most stable and innovative tech stacks.

Secure by Design

Military-grade security embedded from day one.

Contact Our Strategists
@elseif($section->section_key === 'services') {{-- Services Section with Bento Grid --}}

{{ $section->title ?? 'Our Services' }}

{{ $section->description ?? 'Empowering your enterprise with state-of-the-art solutions.' }}

@foreach($services as $index => $service)

{{ $service->title }}

{{ $service->description }}

@endforeach
@elseif($section->section_key === 'portfolio') {{-- Portfolio Section --}}

{{ $section->title ?? 'Global Impact' }}

{{ $section->description ?? 'Explore our portfolio of industry-disrupting projects.' }}

@foreach($projects as $index => $project)
{{ $project->title }}
{{ $project->category }}

{{ $project->title }}

@endforeach
@elseif($section->section_key === 'team') {{-- Team Section --}}

{{ $section->title ?? 'The Collective' }}

{{ $section->description ?? 'Visionary minds building tomorrow, today.' }}

@foreach($teamMembers as $index => $member)
{{ $member->name }}
{{ $member->name }}

{{ $member->role }}

@endforeach
@elseif($section->section_key === 'testimonials') {{-- Modern Testimonials --}}

{{ $section->title ?? 'Client Voices' }}

@elseif($section->section_key === 'contact') {{-- Contact Section --}}
Contact Us

{{ $section->title ?? 'Let\'s Start a Conversation' }}

{{ $section->description ?? 'Ready to elevate your digital presence? Reach out to our team.' }}

Headquarters

{{ $settings['address'] ?? '123 Innovation Drive, Tech Valley, CA 94043' }}

Email Strategy

{{ $settings['contact_email'] ?? 'hello@technova.com' }}

@csrf
@endif @endforeach @endsection