mirror of
https://github.com/AeThex-Corporation/AeThex-OS.git
synced 2026-04-17 22:27:19 +00:00
modified: client/src/pages/os.tsx
This commit is contained in:
parent
9ed30a52df
commit
99a43bc3c7
1 changed files with 7 additions and 7 deletions
|
|
@ -6236,7 +6236,7 @@ function WebcamApp() {
|
|||
function ProjectsAppWrapper() {
|
||||
return (
|
||||
<div className="h-full w-full overflow-auto">
|
||||
<iframe src="/projects" className="w-full h-full border-0" title="Projects" />
|
||||
<iframe src="/hub/projects" className="w-full h-full border-0" title="Projects" />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
@ -6244,7 +6244,7 @@ function ProjectsAppWrapper() {
|
|||
function MessagingAppWrapper() {
|
||||
return (
|
||||
<div className="h-full w-full overflow-auto">
|
||||
<iframe src="/messaging" className="w-full h-full border-0" title="Messages" />
|
||||
<iframe src="/hub/messaging" className="w-full h-full border-0" title="Messages" />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
@ -6252,7 +6252,7 @@ function MessagingAppWrapper() {
|
|||
function MarketplaceAppWrapper() {
|
||||
return (
|
||||
<div className="h-full w-full overflow-auto">
|
||||
<iframe src="/marketplace" className="w-full h-full border-0" title="Marketplace" />
|
||||
<iframe src="/hub/marketplace" className="w-full h-full border-0" title="Marketplace" />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
@ -6260,7 +6260,7 @@ function MarketplaceAppWrapper() {
|
|||
function FileManagerAppWrapper() {
|
||||
return (
|
||||
<div className="h-full w-full overflow-auto">
|
||||
<iframe src="/file-manager" className="w-full h-full border-0" title="File Manager" />
|
||||
<iframe src="/hub/file-manager" className="w-full h-full border-0" title="File Manager" />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
@ -6268,7 +6268,7 @@ function FileManagerAppWrapper() {
|
|||
function CodeGalleryAppWrapper() {
|
||||
return (
|
||||
<div className="h-full w-full overflow-auto">
|
||||
<iframe src="/code-gallery" className="w-full h-full border-0" title="Code Gallery" />
|
||||
<iframe src="/hub/code-gallery" className="w-full h-full border-0" title="Code Gallery" />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
@ -6276,7 +6276,7 @@ function CodeGalleryAppWrapper() {
|
|||
function NotificationsAppWrapper() {
|
||||
return (
|
||||
<div className="h-full w-full overflow-auto">
|
||||
<iframe src="/notifications" className="w-full h-full border-0" title="Notifications" />
|
||||
<iframe src="/hub/notifications" className="w-full h-full border-0" title="Notifications" />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
@ -6284,7 +6284,7 @@ function NotificationsAppWrapper() {
|
|||
function AnalyticsAppWrapper() {
|
||||
return (
|
||||
<div className="h-full w-full overflow-auto">
|
||||
<iframe src="/analytics" className="w-full h-full border-0" title="Analytics" />
|
||||
<iframe src="/hub/analytics" className="w-full h-full border-0" title="Analytics" />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue