diff --git a/pwa/app/(common)/components/cover/Cover.tsx b/pwa/app/(common)/components/cover/Cover.tsx index 86d2c121..c80669a7 100644 --- a/pwa/app/(common)/components/cover/Cover.tsx +++ b/pwa/app/(common)/components/cover/Cover.tsx @@ -1,3 +1,5 @@ +"use client"; +import { useSearchParams } from "next/navigation"; import Button from "components/common/Button"; import Logo from "components/common/Logo"; import classNames from "classnames"; @@ -5,6 +7,9 @@ import CoverCircleStacks from "./CoverCircleStacks"; import StackSelector from "./StackSelector"; export default function Cover() { + const searchParams = useSearchParams(); + const stack = searchParams.get("s"); + return (
- Your development environment is ready!{" "} -
- Continuous integration (GitHub Action) as well as recipes to deploy in - production with{" "} - - Docker Compose - {" "} - or{" "} - - Kubernetes - {" "} - are also pre-installed. -