// app/solutions/page.tsx 'use client'; import * as React from 'react'; import { Navbar } from '@workspace/ui/components/layout'; import { Footer } from '@workspace/ui/components/layout'; import { Container } from '@workspace/ui/components/layout'; import { AnimatedSection } from '@workspace/ui/components/animate-ui/section'; import { Button } from '@workspace/ui/components/ui'; import { FinalCTASection } from '@workspace/ui/components/content'; import { PlaceholderIcon } from '@workspace/ui/components/icons'; // Using placeholder for now import Image from 'next/image'; // Mock data for Industries const INDUSTRIES = [ { icon: , title: 'Technology', description: 'From SaaS startups to enterprise software, we help you scale efficiently without the cloud tax.', }, { icon: , title: 'Legal', description: 'Secure, private document management and collaboration environments with strict access controls.', }, { icon: , title: 'Medical', description: 'HIPAA-compliant infrastructure for storing, processing, and analyzing sensitive patient data.', }, { icon: , title: 'Media', description: 'High-bandwidth, low-latency solutions for content creation, storage, and distribution.', }, { icon: , title: 'Research', description: 'Powerful compute and storage for data-intensive scientific research and simulations.', }, ]; export default function SolutionsPage() { return (
{/* Hero Section: banded with grid background to mirror homepage */}

Solutions by Industry

Practical, high-impact stacks mapped to the realities of your sector.

{/* Right visual panel for rhythm with homepage hero */}
{/* Optional decorative solutions art (drop /hero/solutions-hero-art.webp in public) */}
{/* Industries */}
{INDUSTRIES.map((item, index) => { const href = `/solutions/${item.title.toLowerCase()}`; return (
{index < 9 ? `0${index + 1}` : index + 1}

{item.title}

Explore →

{item.description}

); })}
{/* CTA Section: reuse shared FinalCTASection for consistency */}
); }