gitpod-io / openvscode-server

Run upstream VS Code on a remote machine with access through a modern web browser from any device, anywhere.

Home Page:https://www.gitpod.io/

Repository from Github https://github.comgitpod-io/openvscode-serverRepository from Github https://github.comgitpod-io/openvscode-server

Sovereignsoil

twoperrin opened this issue · comments

import { Card, CardContent } from "@/components/ui/card";
import { Button } from "@/components/ui/button";
import { BarChart2, Users, Video, Brain } from "lucide-react";

export default function SovereignSoilStudioPitch() {
return (


Sovereign Soil Studio Center


Return. Rebuild. Rise. — A Creative Infrastructure for the Future

  <Card>
    <CardContent className="p-6">
      <h2 className="text-2xl font-semibold mb-4">Vision</h2>
      <p>
        The Sovereign Soil Studio Center will be a cultural production hub empowering African talent in animation, film, music, and emerging tech. It merges heritage with high-tech infrastructure.
      </p>
    </CardContent>
  </Card>

  <div className="grid md:grid-cols-2 gap-4">
    <Card>
      <CardContent className="p-6">
        <h3 className="text-xl font-semibold mb-2 flex items-center gap-2"><Video /> Facilities</h3>
        <ul className="list-disc list-inside">
          <li>2 Soundproof Sound Stages</li>
          <li>2 Recording Studios (Music/VO)</li>
          <li>Animation & Editing Suites</li>
          <li>Creative Learning Labs</li>
        </ul>
      </CardContent>
    </Card>

    <Card>
      <CardContent className="p-6">
        <h3 className="text-xl font-semibold mb-2 flex items-center gap-2"><Brain /> Technology</h3>
        <ul className="list-disc list-inside">
          <li>High-end Animation Workstations</li>
          <li>AI/ML GPU Clusters</li>
          <li>Rendering Servers</li>
          <li>Camera & Audio Equipment</li>
        </ul>
      </CardContent>
    </Card>
  </div>

  <Card>
    <CardContent className="p-6">
      <h2 className="text-2xl font-semibold mb-4 flex items-center gap-2"><Users /> Impact & Training</h2>
      <p>
        The center will provide hands-on creative training to local youth, create jobs in media and post-production, and launch an exportable brand of African storytelling and digital excellence.
      </p>
    </CardContent>
  </Card>

  <Card>
    <CardContent className="p-6">
      <h2 className="text-2xl font-semibold mb-4 flex items-center gap-2"><BarChart2 /> Investment</h2>
      <p className="mb-2">Total estimated capital: <strong>$2.85 Million USD</strong></p>
      <ul className="list-disc list-inside">
        <li>Construction & Equipment</li>
        <li>Software & Workstations</li>
        <li>Staffing & Training Launch</li>
      </ul>
    </CardContent>
  </Card>

  <div className="text-center">
    <Button className="text-lg px-8 py-4 mt-4">Join the Vision – Invest Now</Button>
  </div>
</div>

);
}