Files
lisilou-portfolio/config/site.json
T
jhodgkin 07224ba1e7
Deploy to Dev / Deploy & Smoke Test (push) Successful in 18s
Implement config-driven session type and length steps (issue #4)
- site.json: add booking section with sessionTypes, pricing, venmoUsername
- Step 2: session type cards rendered from siteConfig.booking.sessionTypes;
  "Other" option reveals a free-text field; validated before advancing
- Step 3: two large length cards with duration badge + price from config;
  falls back to $75/$150 defaults if config missing
- selectOption shows/hides "Other" field; stores sessionTypeOther in state
- populateSummary uses config labels and shows price in length summary row
- submitBooking sends "other: <description>" for custom session types

Closes #4

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-07-07 23:00:39 -06:00

83 lines
2.5 KiB
JSON

{
"site": {
"title": "Lisi Lou Photography",
"tagline": "Capturing life's beautiful moments",
"description": "Senior portraits, engagement sessions, and milestone photography",
"logo": "/images/logo.png",
"favicon": "/images/favicon.ico"
},
"photographer": {
"name": "Elysse Hodgkin",
"bio": "Passionate about capturing authentic moments and creating timeless memories.",
"profileImage": "/images/profile.jpg"
},
"contact": {
"email": "hello@lisilou.com",
"phone": "",
"bookingUrl": ""
},
"social": {
"instagram": "lisilou.photography",
"facebook": "elysse.hodgkin",
"pinterest": "",
"tiktok": ""
},
"immich": {
"baseUrl": "https://immich.jerodrigged.com",
"publicAlbumPrefix": "/s/"
},
"portfolio": {
"categories": [
{
"id": "seniors",
"name": "Senior Portraits",
"description": "Celebrate your milestone",
"coverImage": "/images/portfolio/seniors-cover.jpg",
"immichAlbumId": "all-seniors"
},
{
"id": "engagements",
"name": "Couples",
"description": "Love stories captured",
"coverImage": "/images/portfolio/engagements-cover.jpg",
"immichAlbumId": "all-couples"
},
{
"id": "families",
"name": "Family or Friends",
"description": "Moments that matter",
"coverImage": "/images/portfolio/families-cover.jpg",
"immichAlbumId": "families-or-friends"
}
]
},
"clientAccess": {
"enabled": true,
"title": "Client Gallery Access",
"description": "Enter your gallery code to view and download your photos",
"placeholder": "Enter your gallery code"
},
"booking": {
"venmoUsername": "LisiLouPhoto",
"sessionTypes": [
{ "id": "senior", "label": "Senior Portrait", "description": "Celebrate your milestone" },
{ "id": "couple", "label": "Couple", "description": "Engagement & couples" },
{ "id": "family", "label": "Family", "description": "Family portraits" },
{ "id": "individual", "label": "Individual", "description": "Personal portrait session" },
{ "id": "newborn", "label": "Newborn", "description": "Newborn & maternity" }
],
"pricing": {
"mini": 75,
"full": 150
}
},
"theme": {
"primaryColor": "#8B7355",
"accentColor": "#D4C5B5",
"textColor": "#2C2C2C",
"backgroundColor": "#FDFBF9",
"fontDisplay": "Cormorant Garamond",
"fontBody": "Nunito Sans"
}
}