// app/solutions/page.tsx 'use client'; import * as React from 'react'; import { ExternalLinkIcon } from 'lucide-react'; import { Navbar } from '@workspace/ui/components/layout'; import { Footer } from '@workspace/ui/components/layout'; import { Container, Section, Grid } from '@workspace/ui/components/layout'; import { FeatureGrid } from '@workspace/ui/components/content'; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@workspace/ui/components/ui'; import { Button } from '@workspace/ui/components/ui'; import { PlaceholderIcon } from '@workspace/ui/components/icons'; // Using placeholder for now // 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 (

Solutions by Industry

We tailor our approach to the unique challenges and requirements of your vertical.

Don't see your industry?

Our core principles apply broadly. Contact us to discuss how we can adapt our approach for your specific use case.

); }