Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions apps/Cloud-Computer-Control-Panel/app/dashboard/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import { Button } from "@/components/ui/button"
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"
import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"
import { Plus, Server, Activity, Settings, BookOpen } from "lucide-react"
import { ManagerList } from "@/components/manager-list"
import { CreateManager } from "@/components/create-manager"
import { CredentialsSettings } from "@/components/credentials-settings"
import { ManagerList } from "@/components/dashboard/manager-list"
import { CreateManager } from "@/components/instance/create-manager"
import { CredentialsSettings } from "@/components/dashboard/credentials-settings"

export default function DashboardPage() {
const router = useRouter()
Expand Down Expand Up @@ -73,7 +73,7 @@ export default function DashboardPage() {
<img src="/apple-touch-icon.png" alt="CCCP" className="h-10 w-10 rounded-lg" />
<div>
<h1 className="text-2xl font-bold">CCCP Cloud Computer Control Panel</h1>
<p className="text-sm text-muted-foreground">Cloud Infrastructure Management</p>
<p className="text-sm text-muted-foreground">Manage your own personal cloud with fully self-hosted cloud applications using Dokploy</p>
</div>
</div>
<div className="flex items-center gap-2">
Expand Down
270 changes: 0 additions & 270 deletions apps/Cloud-Computer-Control-Panel/components/cost-estimator.tsx

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ import {
RotateCw,
Trash2,
} from "lucide-react"
import { InstanceControls } from "./instance-controls"
import { AddSoftwareModal } from "./add-software-modal"
import { InstanceControls } from "../instance/instance-controls"
import { AddSoftwareModal } from "../instance/add-software-modal"
import { useToast } from "@/hooks/use-toast"

interface Manager {
Expand Down
Loading