diff --git a/.env.example b/.env.example index 3f2e1d1..105b1ee 100644 --- a/.env.example +++ b/.env.example @@ -3,4 +3,6 @@ NEXT_PUBLIC_DEV_URL=https://localhost:3000 RESEND_API_KEY= RESEND_FROM_EMAIL= -RESEND_TO_EMAIL= \ No newline at end of file +RESEND_TO_EMAIL= + +OPENPANEL_CLIENT_ID= \ No newline at end of file diff --git a/README.md b/README.md index 4129144..f02ba3e 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,8 @@ NEXT_PUBLIC_DEV_URL=https://localhost:3000 RESEND_API_KEY= RESEND_FROM_EMAIL= RESEND_TO_EMAIL= + +OPENPANEL_CLIENT_ID= ``` ## Notes diff --git a/app/layout.tsx b/app/layout.tsx index 0d43c76..866035d 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,5 +1,6 @@ // @components import { Footer, FrameLines } from "@/components"; +import { OpenPanelComponent } from "@openpanel/nextjs"; // @utils import { generateMetadata } from "@/lib/utils"; @@ -25,6 +26,12 @@ export default function RootLayout({ }>) { return ( + diff --git a/package.json b/package.json index f805094..d4cd577 100644 --- a/package.json +++ b/package.json @@ -15,6 +15,7 @@ }, "dependencies": { "@hookform/resolvers": "3.9.1", + "@openpanel/nextjs": "^1.0.7", "@radix-ui/react-tooltip": "1.1.6", "@tailwindcss/postcss": "next", "clsx": "2.1.1",