Skip to content

Commit fb3e67c

Browse files
committed
minimal app changes
1 parent 06cea82 commit fb3e67c

File tree

16 files changed

+676
-179
lines changed

16 files changed

+676
-179
lines changed

entropy/mint-nft/app/.env.example

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# WalletConnect Configuration
2+
# Get your project ID from https://cloud.walletconnect.com/
3+
NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID=3631c253d8fa745dbbca98af5ae1323a
4+
5+
# Optional: For production deployments
6+
# NEXT_PUBLIC_SITE_URL=https://your-domain.com

entropy/mint-nft/app/.env.local

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# WalletConnect Configuration
2+
# Get your project ID from https://cloud.walletconnect.com/
3+
NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID=3631c253d8fa745dbbca98af5ae1323a
4+
5+
# Optional: For production deployments
6+
# NEXT_PUBLIC_SITE_URL=https://your-domain.com

entropy/mint-nft/app/app/globals.css

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -40,38 +40,38 @@
4040
}
4141

4242
.dark {
43-
--background: oklch(0.145 0 0);
44-
--foreground: oklch(0.985 0 0);
45-
--card: oklch(0.145 0 0);
46-
--card-foreground: oklch(0.985 0 0);
47-
--popover: oklch(0.145 0 0);
48-
--popover-foreground: oklch(0.985 0 0);
49-
--primary: oklch(0.985 0 0);
50-
--primary-foreground: oklch(0.205 0 0);
51-
--secondary: oklch(0.269 0 0);
52-
--secondary-foreground: oklch(0.985 0 0);
53-
--muted: oklch(0.269 0 0);
54-
--muted-foreground: oklch(0.708 0 0);
55-
--accent: oklch(0.269 0 0);
56-
--accent-foreground: oklch(0.985 0 0);
57-
--destructive: oklch(0.396 0.141 25.723);
58-
--destructive-foreground: oklch(0.637 0.237 25.331);
59-
--border: oklch(0.269 0 0);
60-
--input: oklch(0.269 0 0);
61-
--ring: oklch(0.439 0 0);
62-
--chart-1: oklch(0.488 0.243 264.376);
63-
--chart-2: oklch(0.696 0.17 162.48);
64-
--chart-3: oklch(0.769 0.188 70.08);
65-
--chart-4: oklch(0.627 0.265 303.9);
66-
--chart-5: oklch(0.645 0.246 16.439);
67-
--sidebar: oklch(0.205 0 0);
68-
--sidebar-foreground: oklch(0.985 0 0);
69-
--sidebar-primary: oklch(0.488 0.243 264.376);
70-
--sidebar-primary-foreground: oklch(0.985 0 0);
71-
--sidebar-accent: oklch(0.269 0 0);
72-
--sidebar-accent-foreground: oklch(0.985 0 0);
73-
--sidebar-border: oklch(0.269 0 0);
74-
--sidebar-ring: oklch(0.439 0 0);
43+
--background: oklch(0.11 0 0);
44+
--foreground: oklch(0.95 0 0);
45+
--card: oklch(0.18 0 0);
46+
--card-foreground: oklch(0.95 0 0);
47+
--popover: oklch(0.18 0 0);
48+
--popover-foreground: oklch(0.95 0 0);
49+
--primary: oklch(0.6 0.18 220);
50+
--primary-foreground: oklch(1 0 0);
51+
--secondary: oklch(0.26 0 0);
52+
--secondary-foreground: oklch(0.95 0 0);
53+
--muted: oklch(0.26 0 0);
54+
--muted-foreground: oklch(0.7 0 0);
55+
--accent: oklch(0.26 0 0);
56+
--accent-foreground: oklch(0.95 0 0);
57+
--destructive: oklch(0.68 0.22 25);
58+
--destructive-foreground: oklch(1 0 0);
59+
--border: oklch(0.35 0 0);
60+
--input: oklch(0.22 0 0);
61+
--ring: oklch(0.6 0.18 220);
62+
--chart-1: oklch(0.65 0.2 220);
63+
--chart-2: oklch(0.7 0.18 180);
64+
--chart-3: oklch(0.75 0.2 120);
65+
--chart-4: oklch(0.8 0.22 60);
66+
--chart-5: oklch(0.7 0.25 30);
67+
--sidebar: oklch(0.14 0 0);
68+
--sidebar-foreground: oklch(0.95 0 0);
69+
--sidebar-primary: oklch(0.6 0.18 220);
70+
--sidebar-primary-foreground: oklch(1 0 0);
71+
--sidebar-accent: oklch(0.26 0 0);
72+
--sidebar-accent-foreground: oklch(0.95 0 0);
73+
--sidebar-border: oklch(0.35 0 0);
74+
--sidebar-ring: oklch(0.6 0.18 220);
7575
}
7676

7777
@theme inline {

entropy/mint-nft/app/app/layout.tsx

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,15 @@ import { GeistSans } from 'geist/font/sans'
33
import { GeistMono } from 'geist/font/mono'
44
import './globals.css'
55
import { Providers } from './providers'
6-
import { ThemeProvider } from 'next-themes'
7-
import { inter } from 'path/to/inter/font' // Assuming inter font is imported from somewhere
6+
import { ThemeProvider } from '@/components/theme-provider'
7+
import { Inter } from 'next/font/google'
8+
9+
const inter = Inter({ subsets: ['latin'] })
810

911
export const metadata: Metadata = {
10-
title: 'v0 App',
11-
description: 'Created with v0',
12-
generator: 'v0.dev',
12+
title: 'Pyth Entropy NFT Demo',
13+
description: 'Pyth Entropy NFT Demo',
14+
generator: 'Pyth Entropy NFT Demo',
1315
}
1416

1517
export default function RootLayout({

0 commit comments

Comments
 (0)