Modulo makers3d desarrollado con codex V 0.0.1
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import AccountClient from "../../../components/AccountClient";
|
||||
|
||||
export default async function AccountInboxDetailPage({
|
||||
params
|
||||
}: {
|
||||
params: Promise<{ id: string }>;
|
||||
}) {
|
||||
const { id } = await params;
|
||||
|
||||
return (
|
||||
<main className="page-shell workspace-page">
|
||||
<AccountClient section="inbox" conversationId={id} />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
import AccountClient from "../../components/AccountClient";
|
||||
|
||||
export default function AccountInboxPage() {
|
||||
return (
|
||||
<main className="page-shell workspace-page">
|
||||
<AccountClient section="inbox" />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
import AccountClient from "../../components/AccountClient";
|
||||
|
||||
export default function AccountLocationsPage() {
|
||||
return (
|
||||
<main className="page-shell workspace-page">
|
||||
<AccountClient section="locations" />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
import AccountClient from "../components/AccountClient";
|
||||
|
||||
export default function AccountPage() {
|
||||
return (
|
||||
<main className="page-shell workspace-page">
|
||||
<AccountClient section="summary" />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
import AccountClient from "../../components/AccountClient";
|
||||
|
||||
export default function AccountProfilePage() {
|
||||
return (
|
||||
<main className="page-shell workspace-page">
|
||||
<AccountClient section="profile" />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
import AccountClient from "../../components/AccountClient";
|
||||
|
||||
export default function AccountReviewsPage() {
|
||||
return (
|
||||
<main className="page-shell workspace-page">
|
||||
<AccountClient section="reviews" />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
import AccountClient from "../../components/AccountClient";
|
||||
|
||||
export default function AccountServicesPage() {
|
||||
return (
|
||||
<main className="page-shell workspace-page">
|
||||
<AccountClient section="services" />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
import AccountClient from "../../components/AccountClient";
|
||||
|
||||
export default function AccountSettingsPage() {
|
||||
return (
|
||||
<main className="page-shell workspace-page">
|
||||
<AccountClient section="settings" />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
import AccountClient from "../../components/AccountClient";
|
||||
|
||||
export default function AccountShowcasesPage() {
|
||||
return (
|
||||
<main className="page-shell workspace-page">
|
||||
<AccountClient section="showcases" />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
import AccountClient from "../../components/AccountClient";
|
||||
|
||||
export default function AccountStatsPage() {
|
||||
return (
|
||||
<main className="page-shell workspace-page">
|
||||
<AccountClient section="stats" />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
import AccountClient from "../../components/AccountClient";
|
||||
|
||||
export default function AccountSubscriptionPage() {
|
||||
return (
|
||||
<main className="page-shell workspace-page">
|
||||
<AccountClient section="subscription" />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
import AccountClient from "../../components/AccountClient";
|
||||
|
||||
export default function AccountWorksPage() {
|
||||
return (
|
||||
<main className="page-shell workspace-page">
|
||||
<AccountClient section="works" />
|
||||
</main>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user