13 Commits

Author SHA1 Message Date
cloudflare-workers-and-pages[bot] 5a4e011d0e Add Cloudflare Workers configuration 2026-05-04 16:13:49 +00:00
nmemmert 10bd6848ef Simplify podcast highlight labels on episodes page 2026-04-27 16:39:54 -04:00
nmemmert b26103b7b1 Reorganize admin workflow and persist episode discussion questions 2026-04-27 16:25:26 -04:00
nmemmert 83743cc78b Add robots.txt and sitemap.xml for SEO 2026-04-27 15:09:37 -04:00
nmemmert ee153cf9ef image 2026-04-27 11:26:01 -04:00
nmemmert 88860bc42a Serve images first-party and remove necloud domain refs 2026-04-27 10:58:09 -04:00
nmemmert c5cc28b36b Fix podcast art route for Docker runtime dist path 2026-04-27 10:38:57 -04:00
nmemmert 73b8299f1a Add podcast redirects and route through first-party links 2026-04-27 10:31:10 -04:00
nmemmert b4f1c1dbdb Polish About, forms, and share/contact UI 2026-04-23 17:03:41 -04:00
nmemmert 8a71aecb4e Refine homepage sections and contact card design 2026-04-20 15:38:55 -04:00
nmemmert cc4a4b4d63 Gate Titus download, require full name forms, remove companion UI 2026-04-20 11:29:37 -04:00
nmemmert 0c328057c8 Polish hero UX and add admin brand kit panel 2026-04-16 10:31:35 -04:00
nmemmert 5562db992b Ignore generated runtime data files 2026-04-16 08:37:32 -04:00
21 changed files with 5764 additions and 1018 deletions
+10
View File
@@ -18,6 +18,9 @@ dist-ssr
# Uncomment the line below if you do NOT want to track live data in git.
# data/admin-content.json
data/backups/
data/hit-stats.json
data/visitor-stats.json
data/contact-submissions.json
# Editor directories and files
.vscode/*
@@ -29,3 +32,10 @@ data/backups/
*.njsproj
*.sln
*.sw?
# wrangler files
.wrangler
.dev.vars*
!.dev.vars.example
.env*
!.env.example
Binary file not shown.
+1
View File
@@ -18,6 +18,7 @@ RUN npm ci --omit=dev
COPY --from=build /app/dist ./dist
COPY server.js ./server.js
COPY --from=build /app/A_Study_of_Titus.pdf ./A_Study_of_Titus.pdf
# Copy seed data to a separate directory so the entrypoint can seed /app/data
# only when no live data exists yet — upgrades never overwrite existing data.
Binary file not shown.

After

Width:  |  Height:  |  Size: 127 KiB

+25 -18
View File
@@ -54,15 +54,20 @@ Admin auth:
- Set `ADMIN_PASSWORD` on the server/container to protect `/admin` and admin stats/maintenance endpoints.
- Without `ADMIN_PASSWORD`, admin login is disabled until configured.
- Optional: set `CACHE_PURGE_WEBHOOK_URL` to enable one-click cache purge from Admin Operations.
- Optional: set `DEPLOY_WEBHOOK_URL` to enable one-click deploy trigger from Admin Operations.
- Optional: set `BUILD_COMMIT`, `BUILD_NUMBER`, and `DEPLOYED_AT` to display deployment status in Admin.
The app will be available at `http://localhost:4173`.
Persistent admin saves:
- Admin updates are written to `data/admin-content.json`.
- Admin drafts are written to `data/admin-content-draft.json`.
- Built-in page hit stats are written to `data/hit-stats.json`.
- Detailed visitor analytics are written to `data/visitor-stats.json`.
- Backup snapshots are written to `data/backups/`.
- Uploaded admin assets are stored in `data/uploads/` and served at `/uploads/*`.
- `docker-compose.yml` mounts `./data` into the container at `/app/data`.
- This keeps all admin-managed data after container restarts/rebuilds/updates.
@@ -75,18 +80,20 @@ Persistent admin saves:
## Routes
- Portfolio home: `/`
- Project details: `/projects/:slug`
- Site home: `/`
- Start Here: `/start-here`
- Questions: `/questions`
- Privacy: `/privacy`
- Terms: `/terms`
- Admin editor: `/admin`
- Admin draft preview: `/preview`
## Admin editing
- Open `/admin` to edit project card and featured-page content.
- Use **Global Settings** to update theme, home headers, and quick tips.
- Use **Project Settings** to update project-specific fields and README URL.
- Use **Create new entry** to add a new project directly from Admin.
- Enter a URL and click **Scan URL metadata** to auto-fill title, summary, domain, category, and icon when available.
- Click **Save project** to apply updates instantly.
- Open `/admin` to edit homepage content, links, archived studies, Q&A moderation, and analytics.
- Use **Operations** to manage SEO metadata, sitemap paths, legal page text, redirect rules, and podcast highlights.
- Use **Operations** to upload/delete hosted image assets for use in content and social cards.
- Use **Save Draft**, **Preview Draft**, and **Publish Draft** for a safer publish workflow.
- Saved edits are written to `data/admin-content.json` through the API server.
- Built-in stats in `/admin` include page hits plus visitor details (IP, country/state/county/city, returning visitors, and recent visitor log).
- Site Stats in `/admin` includes a Bible Questions inbox sourced from contact form submissions marked as Bible Question.
@@ -94,19 +101,19 @@ Persistent admin saves:
- Admin now includes maintenance actions: **Export JSON**, **Backup Now**, **Prune Old Data**, and **Clear Analytics**.
- Admin also supports restoring from a backup snapshot from `/admin`.
- The server creates startup + daily backup snapshots and retains recent backups automatically.
- Use the **Theme** dropdown to switch between Sandstone, Ocean, Midnight, Forest, and Sunset.
- Use **Remove project** to delete the selected project from your local Admin data.
- Use **Reset project** or **Reset all** to restore defaults from `src/data/projects.ts`.
Scan notes:
- URL scanning is best-effort and depends on site accessibility.
- Some sites block direct scanning; Admin falls back to a proxy scan path when possible.
- Always review scanned fields before saving.
- Operations can trigger optional **Purge Cache** and **Trigger Deploy** webhooks.
Deployment note:
- To keep Admin saves working on the internet, deploy with the Node API (`server.js`) and writable server storage for `data/admin-content.json`.
- To keep Admin saves working on the internet, deploy with the Node API (`server.js`) and writable server storage for `data/`.
Titus study download gate:
- The site now gates Titus study downloads behind a name/email form.
- Default source file is `A_Study_of_Titus.pdf` in the project root.
- Override source path with `TITUS_STUDY_FILE` (relative to project root or absolute).
- Override downloaded filename with `TITUS_STUDY_DOWNLOAD_NAME`.
- When the form checkbox is left enabled (default), contacts are synced to Resend using the same contact sync flow as the contact form.
Useful container commands:
+101
View File
@@ -0,0 +1,101 @@
{
"siteContent": {
"eyebrow": "A Journey Through Scripture",
"heroTagline": "Exploring God's Word one verse at a time",
"startHereHeading": "New Here? Start Here",
"startHereIntro": "If this is your first visit, this path helps you get grounded quickly and make the most of the site.",
"startHereStep1Title": "Step 1: Listen to 3 Starter Episodes",
"startHereStep1Body": "Start with the newest episode, one from the beginning of the current study, and one from the middle.",
"startHereStep1Cta": "Open Episodes",
"startHereStep2Title": "Step 2: Use Q&A to Go Deeper",
"startHereStep2Body": "Browse by topic or search key words to find concise biblical answers and related follow-up questions.",
"startHereStep2Cta": "Go to Q&A",
"startHereStep3Title": "Step 3: Ask Nate Directly",
"startHereStep3Body": "Use the contact form to submit your Bible question for future Q&A or an upcoming episode.",
"startHereStep3Cta": "Submit a Question",
"aboutShowHeading": "Depth. Clarity. Application.",
"aboutShowP1": "Verse by Verse with Nate walks through Scripture passage by passage — unpacking the original context, drawing out the meaning, and connecting each verse to how we live today.",
"aboutShowP2": "Whether you're in the car, at the gym, or just looking for something to anchor your day, each episode is designed to feed your faith with solid, practical teaching.",
"aboutNate": "Nate Emmert is a husband, dad, and lifelong student of the Bible from Lynchburg, Va. He's not a pastor or a professor — just someone who fell in love with digging into Scripture and wanted to bring others along for the journey. He created Verse by Verse to make deep Bible study accessible to anyone, whether you've read the Bible your whole life or you're just getting started. No seminary required. No prior knowledge assumed. Just the Word, unpacked verse by verse.",
"seriesLabel": "Now Playing",
"seriesTitle": "Study of Titus: Sound Doctrine",
"seriesDescription": "A deep-dive into Paul's letter to Titus — unpacking what it means to build a church and a life on sound doctrine.",
"seriesImageUrl": "/images/titus-cover.png",
"seriesListenUrl": "https://open.spotify.com/show/0Gq1TzoJOdReSZ1gYQi8Xl",
"studyGuideTitle": "Companion Study Guide",
"studyGuideDescription": "Go deeper in your study with the official Verse by Verse companion guide — now available on Amazon.",
"studyGuideUrl": "https://a.co/d/01sG2tOJ",
"shareHeading": "Help one more person hear the Word this week.",
"shareP": "Scan the QR code or text the show link to a friend who needs encouragement today.",
"customLinks": [],
"customBlocks": [],
"archivedSeries": [],
"redirects": [
{
"id": "spotify",
"path": "/spotify",
"target": "https://open.spotify.com/show/0Gq1TzoJOdReSZ1gYQi8Xl",
"statusCode": 301
},
{
"id": "apple",
"path": "/apple",
"target": "https://podcasts.apple.com/search?term=Verse+by+Verse+with+Nate",
"statusCode": 301
},
{
"id": "amazon",
"path": "/amazon",
"target": "https://music.amazon.com/podcasts/202322bf-db86-4e7d-9a6b-4db7cbccbccf/verse-by-verse-with-nate",
"statusCode": 301
}
],
"podcastFeaturedLinks": [
{
"id": "sample-highlight-1",
"title": "Introduction to Titus",
"episodeNumber": "2",
"summary": "A practical walkthrough of context, structure, and application for this study.",
"url": "https://open.spotify.com/episode/3mpFfJQP6avAhzxu4BTKvR?si=cl_Dm_2vQraiboouaoINaw",
"embedUrl": "",
"showNotes": "",
"discussionQuestions": [
"1. What do you already know about Paul, Titus, or the island of Crete? And what — if anything — surprised you about the background of this letter?",
"2. The letters core theme is that sound doctrine leads to godly living. Where have you seen that connection — or its breakdown — in your own experience?",
"3. Paul trusted Titus with a hard assignment. Who has trusted you with something difficult — and what did that trust mean to you?"
]
}
],
"seo": {
"title": "Verse by Verse with Nate",
"description": "Verse by Verse with Nate explores Scripture one verse at a time with practical Bible teaching.",
"ogTitle": "Verse by Verse with Nate",
"ogDescription": "A Journey Through Scripture - verse by verse, nugget by nugget.",
"ogImage": "/images/podcast-art.jpeg",
"canonicalUrl": "https://versebyversewithnate.us/",
"robotsPolicy": "index,follow",
"sitemapPaths": [
"/",
"/start-here",
"/questions",
"/privacy",
"/terms"
]
},
"legal": {
"privacyTitle": "Privacy Policy",
"privacyBody": [
"We respect your privacy and collect limited data to operate and improve this site.",
"If you consent to analytics cookies, we may store masked IP-based location signals and returning visitor activity.",
"Contact form details are used only to respond to your message and ministry communication requests."
],
"termsTitle": "Terms",
"termsBody": [
"Content on this site is for informational and ministry purposes.",
"External links are provided for convenience and are subject to third-party policies.",
"By using this site, you agree to lawful use and respectful communication."
]
}
},
"updatedAt": "2026-04-27T20:24:22.589Z"
}
+80 -3
View File
@@ -2,10 +2,21 @@
"siteContent": {
"eyebrow": "A Journey Through Scripture",
"heroTagline": "Exploring God's Word one verse at a time",
"startHereHeading": "New Here? Start Here",
"startHereIntro": "If this is your first visit, this path helps you get grounded quickly and make the most of the site.",
"startHereStep1Title": "Step 1: Listen to 3 Starter Episodes",
"startHereStep1Body": "Start with the newest episode, one from the beginning of the current study, and one from the middle.",
"startHereStep1Cta": "Open Episodes",
"startHereStep2Title": "Step 2: Use Q&A to Go Deeper",
"startHereStep2Body": "Browse by topic or search key words to find concise biblical answers and related follow-up questions.",
"startHereStep2Cta": "Go to Q&A",
"startHereStep3Title": "Step 3: Ask Nate Directly",
"startHereStep3Body": "Use the contact form to submit your Bible question for future Q&A or an upcoming episode.",
"startHereStep3Cta": "Submit a Question",
"aboutShowHeading": "Depth. Clarity. Application.",
"aboutShowP1": "Verse by Verse with Nate walks through Scripture passage by passage — unpacking the original context, drawing out the meaning, and connecting each verse to how we live today.",
"aboutShowP2": "Whether you're in the car, at the gym, or just looking for something to anchor your day, each episode is designed to feed your faith with solid, practical teaching.",
"aboutNate": "Nate Emmert is a husband, dad, and lifelong student of the Bible from Lynchburg, Va. He created Verse by Verse to share the joy of deep Scripture study in a format anyone can follow along with — no seminary required.",
"aboutNate": "Nate Emmert is a husband, dad, and lifelong student of the Bible from Lynchburg, Va. He's not a pastor or a professor — just someone who fell in love with digging into Scripture and wanted to bring others along for the journey. He created Verse by Verse to make deep Bible study accessible to anyone, whether you've read the Bible your whole life or you're just getting started. No seminary required. No prior knowledge assumed. Just the Word, unpacked verse by verse.",
"seriesLabel": "Now Playing",
"seriesTitle": "Study of Titus: Sound Doctrine",
"seriesDescription": "A deep-dive into Paul's letter to Titus — unpacking what it means to build a church and a life on sound doctrine.",
@@ -18,7 +29,73 @@
"shareP": "Scan the QR code or text the show link to a friend who needs encouragement today.",
"customLinks": [],
"customBlocks": [],
"archivedSeries": []
"archivedSeries": [],
"redirects": [
{
"id": "spotify",
"path": "/spotify",
"target": "https://open.spotify.com/show/0Gq1TzoJOdReSZ1gYQi8Xl",
"statusCode": 301
},
"updatedAt": "2026-04-16T12:13:53.095Z"
{
"id": "apple",
"path": "/apple",
"target": "https://podcasts.apple.com/search?term=Verse+by+Verse+with+Nate",
"statusCode": 301
},
{
"id": "amazon",
"path": "/amazon",
"target": "https://music.amazon.com/podcasts/202322bf-db86-4e7d-9a6b-4db7cbccbccf/verse-by-verse-with-nate",
"statusCode": 301
}
],
"podcastFeaturedLinks": [
{
"id": "sample-highlight-1",
"title": "Introduction to Titus",
"episodeNumber": "2",
"summary": "A practical walkthrough of context, structure, and application for this study.",
"url": "https://open.spotify.com/episode/3mpFfJQP6avAhzxu4BTKvR?si=cl_Dm_2vQraiboouaoINaw",
"embedUrl": "",
"showNotes": "",
"discussionQuestions": [
"1. What do you already know about Paul, Titus, or the island of Crete? And what — if anything — surprised you about the background of this letter?",
"2. The letters core theme is that sound doctrine leads to godly living. Where have you seen that connection — or its breakdown — in your own experience?",
"3. Paul trusted Titus with a hard assignment. Who has trusted you with something difficult — and what did that trust mean to you?"
]
}
],
"seo": {
"title": "Verse by Verse with Nate",
"description": "Verse by Verse with Nate explores Scripture one verse at a time with practical Bible teaching.",
"ogTitle": "Verse by Verse with Nate",
"ogDescription": "A Journey Through Scripture - verse by verse, nugget by nugget.",
"ogImage": "/images/podcast-art.jpeg",
"canonicalUrl": "https://versebyversewithnate.us/",
"robotsPolicy": "index,follow",
"sitemapPaths": [
"/",
"/start-here",
"/questions",
"/privacy",
"/terms"
]
},
"legal": {
"privacyTitle": "Privacy Policy",
"privacyBody": [
"We respect your privacy and collect limited data to operate and improve this site.",
"If you consent to analytics cookies, we may store masked IP-based location signals and returning visitor activity.",
"Contact form details are used only to respond to your message and ministry communication requests."
],
"termsTitle": "Terms",
"termsBody": [
"Content on this site is for informational and ministry purposes.",
"External links are provided for convenience and are subject to third-party policies.",
"By using this site, you agree to lawful use and respectful communication."
]
}
},
"updatedAt": "2026-04-27T20:24:19.789Z"
}
+5 -5
View File
@@ -11,17 +11,17 @@
<meta property="og:type" content="website" />
<meta property="og:title" content="Verse by Verse with Nate" />
<meta property="og:description" content="A verse-by-verse Scripture podcast exploring God's Word with depth, clarity, and practical application." />
<meta property="og:image" content="https://necloud.us/images/banner.png" />
<meta property="og:image" content="https://versebyversewithnate.us/images/banner.png" />
<meta property="og:image:type" content="image/png" />
<meta property="og:image:secure_url" content="https://necloud.us/images/banner.png" />
<meta property="og:image:secure_url" content="https://versebyversewithnate.us/images/banner.png" />
<meta property="og:image:alt" content="Verse by Verse with Nate podcast banner" />
<meta property="og:locale" content="en_US" />
<meta property="og:url" content="https://necloud.us" />
<meta property="og:url" content="https://versebyversewithnate.us" />
<meta property="og:site_name" content="Verse by Verse with Nate" />
<link rel="canonical" href="https://necloud.us" />
<link rel="canonical" href="https://versebyversewithnate.us" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Barlow+Condensed:wght@300;400;500;700&display=swap" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&display=swap" rel="stylesheet" />
</head>
<body>
<div id="root"></div>
+1435 -1
View File
File diff suppressed because it is too large Load Diff
+6 -3
View File
@@ -10,8 +10,9 @@
"build": "tsc -b && vite build",
"start": "node --env-file=.env server.js",
"lint": "eslint .",
"preview": "vite preview",
"chatbot:eval": "node scripts/evaluate-chatbot.mjs"
"preview": "npm run build && wrangler dev",
"chatbot:eval": "node scripts/evaluate-chatbot.mjs",
"deploy": "npm run build && wrangler deploy"
},
"dependencies": {
"express": "^5.2.1",
@@ -23,6 +24,7 @@
"resend": "^6.10.0"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.35.0",
"@eslint/js": "^9.39.4",
"@types/node": "^24.12.0",
"@types/react": "^19.2.14",
@@ -35,6 +37,7 @@
"globals": "^17.4.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^8.0.0"
"vite": "^8.0.0",
"wrangler": "^4.87.0"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 127 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 152 KiB

+9
View File
@@ -0,0 +1,9 @@
User-agent: *
Allow: /
Disallow: /admin
Disallow: /api/
Disallow: /thanks
Disallow: /subscribe/thanks
Sitemap: https://versebyversewithnate.us/sitemap.xml
+39
View File
@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://versebyversewithnate.us/</loc>
<lastmod>2026-04-27</lastmod>
<changefreq>weekly</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>https://versebyversewithnate.us/start-here</loc>
<lastmod>2026-04-27</lastmod>
<changefreq>monthly</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>https://versebyversewithnate.us/questions</loc>
<lastmod>2026-04-27</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
</url>
<url>
<loc>https://versebyversewithnate.us/subscribe</loc>
<lastmod>2026-04-27</lastmod>
<changefreq>monthly</changefreq>
<priority>0.6</priority>
</url>
<url>
<loc>https://versebyversewithnate.us/privacy</loc>
<lastmod>2026-04-27</lastmod>
<changefreq>yearly</changefreq>
<priority>0.3</priority>
</url>
<url>
<loc>https://versebyversewithnate.us/terms</loc>
<lastmod>2026-04-27</lastmod>
<changefreq>yearly</changefreq>
<priority>0.3</priority>
</url>
</urlset>
+840 -39
View File
File diff suppressed because it is too large Load Diff
+867 -33
View File
File diff suppressed because it is too large Load Diff
+1312 -496
View File
File diff suppressed because it is too large Load Diff
+1011 -424
View File
File diff suppressed because it is too large Load Diff
+14 -3
View File
@@ -3,10 +3,21 @@
}
:root {
font-family: 'Barlow Condensed', 'Trebuchet MS', sans-serif;
--brand-black: #0a0a08;
--brand-black-2: #0f0f0c;
--brand-black-3: #1a1a15;
--brand-border: #2a2518;
--brand-gold: #c9a84c;
--brand-gold-light: #e0c070;
--brand-gold-dark: #8a6e28;
--brand-warm-white: #f0ead8;
--brand-muted: #7a7060;
--brand-font-body: 'Cormorant Garamond', Georgia, serif;
--brand-font-heading: 'Cormorant Garamond', Georgia, serif;
font-family: var(--brand-font-body);
line-height: 1.5;
color: #f0e6d0;
background: #0a0a0a;
color: var(--brand-warm-white);
background: var(--brand-black);
font-synthesis: none;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
+3 -1
View File
@@ -1,9 +1,11 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { cloudflare } from "@cloudflare/vite-plugin";
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
plugins: [react(), cloudflare()],
server: {
proxy: {
'/api': 'http://localhost:4173',
+14
View File
@@ -0,0 +1,14 @@
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "siteforge",
"compatibility_date": "2026-05-04",
"observability": {
"enabled": true
},
"assets": {
"not_found_handling": "single-page-application"
},
"compatibility_flags": [
"nodejs_compat"
]
}