refactor: rename cloud page to providers page

This commit is contained in:
Pablo Lara
2024-07-15 10:51:23 +02:00
parent 725dbd2979
commit 3edb2ea9f2
3 changed files with 16 additions and 16 deletions
-13
View File
@@ -1,13 +0,0 @@
import React from "react";
import Header from "@/components/ui/header/Header";
export default function Cloud() {
return (
<>
<Header title="Cloud" icon="tabler:zoom-scan" />
<p>Hi hi from Cloud page</p>
</>
);
}
+13
View File
@@ -0,0 +1,13 @@
import React from "react";
import Header from "@/components/ui/header/Header";
export default function Providers() {
return (
<>
<Header title="Providers" icon="tabler:zoom-scan" />
<p>Hi hi from Providers page</p>
</>
);
}
+3 -3
View File
@@ -179,10 +179,10 @@ export const sectionItems: SidebarItem[] = [
title: "Accounts",
items: [
{
key: "cloud",
href: "/cloud",
key: "providers",
href: "/providers",
icon: "solar:gift-linear",
title: "Cloud",
title: "Providers",
endContent: (
<Chip size="sm" variant="flat">
3