Skip to content

Commit c19b6b6

Browse files
committed
refactor: adopt @profullstack/stack modules
Replace vendored/drifted referrals, email, supabase, feedback, coinpay and crawlproof code with @profullstack/stack@^0.1.0 subpath imports.
1 parent 9ba0445 commit c19b6b6

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

apps/logicsrc-web/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
},
1414
"dependencies": {
1515
"@profullstack/autoblog": "github:profullstack/autoblog#75e54af",
16+
"@profullstack/stack": "^0.1.0",
1617
"@supabase/supabase-js": "^2.105.4",
1718
"marked": "^18.0.5",
1819
"next": "16.2.6",

apps/logicsrc-web/src/app/layout.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import type { Metadata, Viewport } from "next";
22
import type { ReactNode } from "react";
33
import "../styles.css";
44
import Script from "next/script";
5+
import { FeedbackWidget } from "@profullstack/stack/feedback";
56

67
const SITE_URL = (process.env.PUBLIC_URL ?? "https://logicsrc.com").replace(/\/$/, "");
78
const DESCRIPTION =
@@ -86,7 +87,8 @@ export default function RootLayout({ children }: { children: ReactNode }): React
8687
src="https://crawlproof.com/stats.js"
8788
strategy="afterInteractive"
8889
/>
89-
<script async src="https://feedback.profullstack.com/embed/profullstack-feedback.js" data-property="logicsrc.com"></script></body>
90+
<FeedbackWidget property="logicsrc.com" />
91+
</body>
9092
</html>
9193
);
9294
}

0 commit comments

Comments
 (0)