Skip to content

Commit 88990e2

Browse files
authored
Merge pull request #893 from gitroomhq/feat/postiz-v2
Postiz new design: v2
2 parents b5e58d9 + f38f5f9 commit 88990e2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+2045
-1599
lines changed
Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
export const dynamic = 'force-dynamic';
2-
import { AnalyticsComponent } from '@gitroom/frontend/components/analytics/analytics.component';
32
import { Metadata } from 'next';
43
import { PlatformAnalytics } from '@gitroom/frontend/components/platform-analytics/platform.analytics';
54
import { isGeneralServerSide } from '@gitroom/helpers/utils/is.general.server.side';
@@ -8,9 +7,5 @@ export const metadata: Metadata = {
87
description: '',
98
};
109
export default async function Index() {
11-
return (
12-
<>
13-
{isGeneralServerSide() ? <PlatformAnalytics /> : <AnalyticsComponent />}
14-
</>
15-
);
10+
return <PlatformAnalytics />;
1611
}

apps/frontend/src/app/(app)/(site)/billing/page.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,9 @@ export const metadata: Metadata = {
77
description: '',
88
};
99
export default async function Page() {
10-
return <BillingComponent />;
10+
return (
11+
<div className="bg-newBgColorInner flex-1 flex-col flex p-[20px] gap-[12px]">
12+
<BillingComponent />
13+
</div>
14+
);
1115
}
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
import { LayoutSettings } from '@gitroom/frontend/components/layout/layout.settings';
1+
import { LayoutComponent } from '@gitroom/frontend/components/new-layout/layout.component';
2+
23
export default async function Layout({
34
children,
45
}: {
56
children: React.ReactNode;
67
}) {
7-
return <LayoutSettings>{children}</LayoutSettings>;
8+
return <LayoutComponent>{children}</LayoutComponent>;
89
}

apps/frontend/src/app/(app)/(site)/marketplace/buyer/page.tsx

Lines changed: 0 additions & 17 deletions
This file was deleted.

apps/frontend/src/app/(app)/(site)/marketplace/layout.tsx

Lines changed: 0 additions & 10 deletions
This file was deleted.

apps/frontend/src/app/(app)/(site)/marketplace/page.tsx

Lines changed: 0 additions & 21 deletions
This file was deleted.

apps/frontend/src/app/(app)/(site)/marketplace/seller/page.tsx

Lines changed: 0 additions & 17 deletions
This file was deleted.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
import { MediaLayoutComponent } from '@gitroom/frontend/components/new-layout/layout.media.component';
2+
3+
export default async function Page() {
4+
return <MediaLayoutComponent />
5+
}

apps/frontend/src/app/(app)/(site)/messages/[id]/page.tsx

Lines changed: 0 additions & 11 deletions
This file was deleted.

apps/frontend/src/app/(app)/(site)/messages/layout.tsx

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)