Archived
Same site — glass header, bento grid, hero drift, dark mode — with three things fixed on the way: - Tailwind and lucide came from CDNs on every page load, and the fonts from Google. All are now built in or self-hosted, so the site owes nothing to third parties at runtime. - The hero and bento photographs were hot-linked from Unsplash. They are re-encoded to webp and served from the MinIO bucket with a year-long cache. - The ministries and labs were hard-coded in the markup, so launching a ministry meant editing HTML. They now come from /api/network. The mobile menu button also opens something now; it did nothing before.
27 lines
590 B
JSON
27 lines
590 B
JSON
{
|
|
"name": "rwn-website-frontend",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc --noEmit && vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"react": "^19.2.7",
|
|
"react-dom": "^19.2.7",
|
|
"lucide-react": "1.25.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/vite": "4.3.3",
|
|
"@types/node": "^26.1.0",
|
|
"@types/react": "^19.2.17",
|
|
"@types/react-dom": "^19.2.3",
|
|
"@vitejs/plugin-react": "^6.0.3",
|
|
"tailwindcss": "4.3.3",
|
|
"typescript": "^5.9.0",
|
|
"vite": "^8.1.3"
|
|
}
|
|
}
|