diff --git a/.github/workflows/build-sveltekit.yml b/.github/workflows/build-sveltekit.yml
index 736029e..06d1bc1 100644
--- a/.github/workflows/build-sveltekit.yml
+++ b/.github/workflows/build-sveltekit.yml
@@ -48,4 +48,18 @@ jobs:
labels: ${{ steps.meta.outputs.labels }}
# "PORT=${{ secrets.SV_PORT }}"
# "CAPTCHAKEY=${{ secrets.CAPTCHAKEY }}"
- # "PB_URL=${{ secrets.PB_URL }}"
\ No newline at end of file
+ # "PB_URL=${{ secrets.PB_URL }}"
+
+ - name: Trigger Dokploy Deployment
+ run: |
+ curl -X 'POST' \
+ '${{ secrets.DOKPLOY_WEBHOOK_URL }}' \
+ -H 'Content-Type: application/json' \
+ -H 'x-github-event: push' \
+ -d '{
+ "ref": "refs/heads/production",
+ "head_commit": {
+ "id": "${{ github.sha }}",
+ "message": "Deployment from Github Actions"
+ }
+ }'
diff --git a/sveltekit/src/lib/config.ts b/sveltekit/src/lib/config.ts
new file mode 100644
index 0000000..2902915
--- /dev/null
+++ b/sveltekit/src/lib/config.ts
@@ -0,0 +1 @@
+export const PB_URL = "https://pb.codefallacy.com"
\ No newline at end of file
diff --git a/sveltekit/src/routes/+page.svelte b/sveltekit/src/routes/+page.svelte
index 32b4b88..b4b7369 100644
--- a/sveltekit/src/routes/+page.svelte
+++ b/sveltekit/src/routes/+page.svelte
@@ -2,6 +2,10 @@
import codefallacy from '$lib/assets/codefallacy/codefallacy-transparent.svg';
import bmc from '$lib/assets/codefallacy/bmc-button.svg';
import svg from '$lib/assets/codefallacy/youtube.svg';
+ import { PB_URL } from '$lib/config';
+ import { dev } from '$app/environment';
+
+ let imageUrl = $state(`${PB_URL}/api/files/pbc_2708086759/d7kkz17s0i5u7ue/cftransparent_r4959gbvx3.png?thumb=300x0`);
Hello!
-Currently this site is under construction!
-In the meantime, Check my Youtube Channel
-Hello!
+Currently this site is under construction!
+In the meantime, Check my Youtube Channel