mirror of
https://github.com/Xevion/xevion.dev.git
synced 2026-01-31 12:26:39 -06:00
feat: redesign homepage with Radix UI and add dev environment defaults
- Replace title/tagline homepage with social profile design - Add Radix UI Themes + icon libraries for modern UI components - Provide sensible dev defaults for DB/secrets (no .env required) - Add production safety checks for critical env vars - Make optional features (cron, healthcheck) gracefully skip when unconfigured
This commit is contained in:
+9
-1
@@ -7,13 +7,18 @@
|
||||
"build": "next build",
|
||||
"dev": "next dev --turbopack",
|
||||
"lint": "eslint .",
|
||||
"start": "next start"
|
||||
"start": "next start",
|
||||
"db:start": "docker compose up -d",
|
||||
"db:stop": "docker compose down",
|
||||
"db:reset": "docker compose down -v && docker compose up -d"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fontsource-variable/inter": "^5.1.0",
|
||||
"@fontsource-variable/roboto": "^5.1.0",
|
||||
"@fontsource-variable/roboto-mono": "^5.1.0",
|
||||
"@fontsource/hanken-grotesk": "^5.1.0",
|
||||
"@fontsource/schibsted-grotesk": "^5.2.8",
|
||||
"@icons-pack/react-simple-icons": "^13.8.0",
|
||||
"@mantine/hooks": "^8",
|
||||
"@next/eslint-plugin-next": "^15.1.1",
|
||||
"@octokit/core": "^7.0.5",
|
||||
@@ -21,6 +26,7 @@
|
||||
"@payloadcms/next": "^3.61.1",
|
||||
"@payloadcms/payload-cloud": "^3.61.1",
|
||||
"@payloadcms/richtext-lexical": "^3.61.1",
|
||||
"@radix-ui/themes": "^3.2.1",
|
||||
"@tanstack/react-query": "^5.90",
|
||||
"@vercel/analytics": "^1.5.0",
|
||||
"clsx": "^2.1.1",
|
||||
@@ -30,8 +36,10 @@
|
||||
"next": "^15.5.6",
|
||||
"p5i": "^0.6.0",
|
||||
"payload": "^3.61.1",
|
||||
"radix-ui": "^1.4.3",
|
||||
"react": "19.2.0",
|
||||
"react-dom": "19.2.0",
|
||||
"react-icons": "^5.5.0",
|
||||
"react-markdown": "^10.1.0",
|
||||
"react-wrap-balancer": "^1",
|
||||
"sharp": "^0.34",
|
||||
|
||||
Reference in New Issue
Block a user