Skip to content

Commit b04752a

Browse files
authored
Merge pull request #78 from NillionNetwork/feat/updates
feat: update footer links
2 parents 36a7a05 + 1bc499f commit b04752a

File tree

5 files changed

+44
-22
lines changed

5 files changed

+44
-22
lines changed

docker-compose-nilcc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
app:
3-
image: public.ecr.aws/x8g8t2h7/nilgpt:0.5.2
3+
image: public.ecr.aws/x8g8t2h7/nilgpt:0.5.3
44
container_name: nilGPT
55
ports:
66
- "3000:3000"

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nil-gpt",
3-
"version": "0.5.2",
3+
"version": "0.5.3",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",
@@ -12,8 +12,8 @@
1212
},
1313
"dependencies": {
1414
"@nillion/blindfold": "0.1.0",
15-
"@nillion/nuc": "^0.1.0",
16-
"@nillion/secretvaults": "0.1.2-rc.4",
15+
"@nillion/nuc": "^0.1.1",
16+
"@nillion/secretvaults": "0.1.7",
1717
"@privy-io/react-auth": "^2.18.0",
1818
"@privy-io/server-auth": "^1.31.1",
1919
"@radix-ui/react-accordion": "^1.2.12",

pnpm-lock.yaml

Lines changed: 20 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/measurement-hash.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ SCRIPT_PATH=$(dirname $(realpath $0))
66
ROOT_PATH="$SCRIPT_PATH/../"
77
DOCKER_COMPOSE_HASH=$(sha256sum $ROOT_PATH/docker-compose-nilcc.yaml | cut -d" " -f1)
88
VCPUS=4
9-
NILCC_VERSION=0.2.0
9+
NILCC_VERSION=0.2.1
1010
NILCC_VERIFIER_VERSION=0.3.0
1111

1212
MEASUREMENT_HASH=$(docker run -v/tmp/nilcc-verifier-cache:/tmp/nilcc-verifier-cache --rm ghcr.io/nillionnetwork/nilcc-verifier:$NILCC_VERIFIER_VERSION measurement-hash $DOCKER_COMPOSE_HASH $NILCC_VERSION --vm-type cpu --cpus $VCPUS)

src/components/landingPage/Footer.tsx

Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,14 @@ const Footer = () => (
3636
>
3737
Terms of Service
3838
</a>
39-
<Link
40-
href="/privacy-policy"
39+
<a
40+
href="https://nillion.notion.site/nilGPT-Privacy-Policy-2261827799b48083b211d957d127d911"
41+
target="_blank"
42+
rel="noopener noreferrer"
4143
className="text-gray-400 hover:text-white transition-colors underline"
4244
>
4345
Privacy Policy
44-
</Link>
46+
</a>
4547
<Link
4648
href="/content-policy"
4749
className="text-gray-400 hover:text-white transition-colors underline"
@@ -124,6 +126,20 @@ const Footer = () => (
124126
/>
125127
nilDB
126128
</a>
129+
<a
130+
href="https://github.com/NillionNetwork/nilcc"
131+
target="_blank"
132+
className="text-gray-400 hover:text-white transition-colors flex items-center gap-2 text-sm"
133+
rel="noopener"
134+
>
135+
<Image
136+
src="/img/github_logo.svg"
137+
alt="GitHub"
138+
width={16}
139+
height={16}
140+
/>
141+
nilCC
142+
</a>
127143
</div>
128144
</div>
129145
</div>

0 commit comments

Comments
 (0)