@extends('layouts.app') @section('content') @php $features = [ [ 'icon' => 'mail', 'title' => 'Gmail', 'description' => 'Professional email with custom domain', 'color' => 'bg-red-500', ], [ 'icon' => 'video', 'title' => 'Meet', 'description' => 'Video meetings for up to 500 participants', 'color' => 'bg-green-500', ], [ 'icon' => 'file-text', 'title' => 'Docs', 'description' => 'Real-time collaboration on documents', 'color' => 'bg-blue-500', ], [ 'icon' => 'cloud', 'title' => 'Drive', 'description' => 'Secure cloud storage and file sharing', 'color' => 'bg-yellow-500', ], ]; $workspaceApps = [ ['name' => 'Gmail', 'icon' => '📧', 'color' => 'bg-red-100 text-red-600'], ['name' => 'Calendar', 'icon' => '📅', 'color' => 'bg-blue-100 text-blue-600'], ['name' => 'Drive', 'icon' => '💾', 'color' => 'bg-yellow-100 text-yellow-600'], ['name' => 'Docs', 'icon' => '📄', 'color' => 'bg-blue-100 text-blue-600'], ['name' => 'Sheets', 'icon' => '📊', 'color' => 'bg-green-100 text-green-600'], ['name' => 'Slides', 'icon' => '🎨', 'color' => 'bg-orange-100 text-orange-600'], ['name' => 'Meet', 'icon' => '🎥', 'color' => 'bg-green-100 text-green-600'], ['name' => 'Chat', 'icon' => '💬', 'color' => 'bg-green-100 text-green-600'], ]; @endphp
{{-- Floating Background Elements --}}
{{-- Header --}} {{-- Hero Section --}}

G o o g l e Workspace

The everything workspace

Transform the way your team works with AI-powered apps that connect seamlessly across Google Workspace.

Enterprise security
AI-powered
99.9% uptime
{{-- Isometric Workspace Visualization --}}
{{-- Main Workspace Container --}}
{{-- Floating Apps --}}
@foreach ($workspaceApps as $appIndex => $app)
{{ $app['icon'] }}
{{ $app['name'] }}
@endforeach
{{-- Collaboration Scene --}}
Team Collaboration
A
B
C
{{-- Floating Elements --}}
@include('googlew.googleplans') {{-- Features Section --}}

Everything you need to get work done

Connect, create, and collaborate with Google Workspace's integrated suite of AI-powered productivity tools.

@foreach ($features as $featureIndex => $feature)
@if ($feature['icon'] === 'mail') @elseif ($feature['icon'] === 'video') @elseif ($feature['icon'] === 'file-text') @elseif ($feature['icon'] === 'cloud') @endif

{{ $feature['title'] }}

{{ $feature['description'] }}

@endforeach
@include('components.faqsectionone')
@include('components.clients')
@endsection