diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6301f87..0a96281 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,3 +38,6 @@ jobs: - name: Build run: pnpm build + env: + NEXT_PUBLIC_API_URL: ${{ secrets.NEXT_PUBLIC_API_URL }} + NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY: ${{ secrets.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY }} diff --git a/apps/client/package.json b/apps/client/package.json index 18504ec..c6a7674 100644 --- a/apps/client/package.json +++ b/apps/client/package.json @@ -1,5 +1,5 @@ { - "name": "core", + "name": "client", "version": "0.1.0", "private": true, "scripts": { @@ -30,6 +30,7 @@ "posthog-js": "^1.217.4", "react": "^19.0.0", "react-dom": "^19.0.0", + "sonner": "^1.7.4", "tailwind-merge": "^3.0.1", "tailwindcss-animate": "^1.0.7" }, @@ -43,4 +44,4 @@ "tailwindcss": "^3.4.17", "typescript": "^5" } -} \ No newline at end of file +} diff --git a/apps/client/src/app/globals.css b/apps/client/src/app/globals.css index 6167036..33cb461 100644 --- a/apps/client/src/app/globals.css +++ b/apps/client/src/app/globals.css @@ -108,5 +108,8 @@ body { --sidebar-accent-foreground: 240 4.8% 95.9%; --sidebar-border: 240 3.7% 15.9%; --sidebar-ring: 217.2 91.2% 59.8%; + .cl-userButtonOuterIdentifier{ + color: white; + } } } diff --git a/apps/client/src/app/contributers/page.tsx b/apps/client/src/app/home/contributers/page.tsx similarity index 100% rename from apps/client/src/app/contributers/page.tsx rename to apps/client/src/app/home/contributers/page.tsx diff --git a/apps/client/src/app/fun/fan.tsx b/apps/client/src/app/home/fun/fan.tsx similarity index 100% rename from apps/client/src/app/fun/fan.tsx rename to apps/client/src/app/home/fun/fan.tsx diff --git a/apps/client/src/app/fun/layout.tsx b/apps/client/src/app/home/fun/layout.tsx similarity index 100% rename from apps/client/src/app/fun/layout.tsx rename to apps/client/src/app/home/fun/layout.tsx diff --git a/apps/client/src/app/fun/page.tsx b/apps/client/src/app/home/fun/page.tsx similarity index 100% rename from apps/client/src/app/fun/page.tsx rename to apps/client/src/app/home/fun/page.tsx diff --git a/apps/client/src/app/home/gallery/page.tsx b/apps/client/src/app/home/gallery/page.tsx new file mode 100644 index 0000000..4d165eb --- /dev/null +++ b/apps/client/src/app/home/gallery/page.tsx @@ -0,0 +1,61 @@ +"use client"; +import React from "react"; +import { FileVideo } from "lucide-react"; +import GalleryCard, { Video } from "@/components/home/videoCard"; +import { fetchUserObjects } from "@/utils"; + +const EmptyState = () => ( +
+ Upload your videos to see them displayed here +
+