Skip to content

Commit 61ca666

Browse files
committed
/k25
1 parent 02b45d3 commit 61ca666

12 files changed

Lines changed: 598 additions & 4 deletions

File tree

.github/workflows/main.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ jobs:
5252
NEXT_PUBLIC_BASE_URL: ${{ secrets.NEXT_PUBLIC_BASE_URL }}
5353
NODE_ENV: production
5454

55+
# Supabase Environment Variables
56+
NEXT_PUBLIC_SUPABASE_URL: ${{ secrets.NEXT_PUBLIC_SUPABASE_URL }}
57+
NEXT_PUBLIC_SUPABASE_ANON_KEY: ${{ secrets.NEXT_PUBLIC_SUPABASE_ANON_KEY }}
58+
5559
CLOUDFLARE_DEFAULT_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_DEFAULT_ACCOUNT_ID }}
5660
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
5761
CLOUDFLARE_ZONE_ID: ${{ secrets.CLOUDFLARE_ZONE_ID }}

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@
1414
"@radix-ui/react-accordion": "^1.2.1",
1515
"@radix-ui/react-dialog": "^1.1.2",
1616
"@radix-ui/react-slot": "^1.1.0",
17+
"@supabase/supabase-js": "^2.49.8",
1718
"@types/nodemailer": "^6.4.17",
19+
"@upstash/ratelimit": "^2.0.5",
20+
"@upstash/redis": "^1.34.9",
1821
"class-variance-authority": "^0.7.0",
1922
"classnames": "^2.5.1",
2023
"clsx": "^2.1.1",

pnpm-lock.yaml

Lines changed: 147 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
export default function AdminApplications() {
2+
return (
3+
<div className="min-h-screen bg-gray-50 flex items-center justify-center">
4+
<div className="text-center">
5+
<h1 className="text-2xl font-bold text-gray-900 mb-4">Admin Panel</h1>
6+
<p className="text-gray-600">Coming soon...</p>
7+
<p className="text-sm text-gray-500 mt-2">This feature will be available after deployment.</p>
8+
</div>
9+
</div>
10+
);
11+
}

0 commit comments

Comments
 (0)