Skip to content

Commit 168cd0e

Browse files
GeneAIclaude
andcommitted
refactor: Remove wizard examples and update deployment guides
Removed all example projects from main website: - Removed "Example Projects" section from homepage - Both software/AI wizards and healthcare examples removed - Examples will be deployed to separate subdomains from separate projects Updated all deployment guides to clarify project structure: RAILWAY_SUBDOMAIN_SETUP.md: - Added "Important Note" section at top - Clarified wizards deployed from separate wizards project - Clarified healthcare deployed from separate AI Nurse Florence project - Updated all directory path examples - Made clear both are NOT deployed from main website WHOIS_COM_DNS_SETUP.md: - Added "Important Note" section at top - Updated "Complete Workflow for Tonight" section - Changed paths to emphasize separate project directories - Removed reference to main website directory DNS_SUBDOMAIN_SETUP.md: - Added "Important Note" section at top - Clarified subdomain architecture - Made clear separation between main site and subdomain projects Project Architecture: - smartaimemory.com: Main marketing website (this repo) - wizards.smartaimemory.com: Separate wizards showcase project - healthcare.smartaimemory.com: Separate AI Nurse Florence project This provides cleaner separation of concerns and allows each subdomain to be managed independently with its own codebase. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 933f79a commit 168cd0e

File tree

4 files changed

+38
-102
lines changed

4 files changed

+38
-102
lines changed

website/DNS_SUBDOMAIN_SETUP.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ This guide will help you set up two subdomains for Smart AI Memory:
44
1. **wizards.smartaimemory.com** - Software and AI wizard examples
55
2. **healthcare.smartaimemory.com** - AI Nurse Florence dashboard
66

7+
## Important Note
8+
9+
**Both subdomains are deployed from SEPARATE projects**, not from the main smartaimemory.com website.
10+
11+
- The main website remains at `smartaimemory.com`
12+
- Wizard examples will be deployed from a separate wizards project
13+
- Healthcare dashboard will be deployed from a separate AI Nurse Florence project
14+
715
## Prerequisites
816

917
- Access to your domain registrar or DNS provider (where smartaimemory.com is registered)

website/RAILWAY_SUBDOMAIN_SETUP.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ Quick guide to deploy your two subdomains on Railway tonight:
44
- **wizards.smartaimemory.com** - Software & AI wizard examples
55
- **healthcare.smartaimemory.com** - AI Nurse Florence dashboard
66

7+
## Important Note
8+
9+
**Both subdomains are deployed from SEPARATE projects**, not from the main smartaimemory.com website.
10+
11+
- The main website remains at `smartaimemory.com`
12+
- Wizard examples will be deployed from your separate wizards project
13+
- Healthcare dashboard will be deployed from your separate AI Nurse Florence project
14+
715
## Step 1: Install Railway CLI
816

917
```bash
@@ -22,10 +30,11 @@ This will open a browser window for authentication.
2230

2331
### 3.1 Navigate to your wizards app directory
2432

33+
**Important:** This should be your separate wizard examples project, NOT the main website.
34+
2535
```bash
26-
cd /path/to/wizards-showcase
27-
# Or if using the main website directory:
28-
cd /Users/patrickroebuck/empathy_11_6_2025/Empathy-framework/website
36+
cd /path/to/your-wizards-project
37+
# Example: cd ~/projects/empathy-wizards-showcase
2938
```
3039

3140
### 3.2 Initialize Railway project
@@ -74,8 +83,11 @@ CNAME: wizards → your-project.up.railway.app
7483

7584
### 4.1 Navigate to healthcare dashboard directory
7685

86+
**Important:** This should be your separate healthcare project (AI Nurse Florence), NOT the main website.
87+
7788
```bash
78-
cd /path/to/healthcare-dashboard
89+
cd /path/to/your-healthcare-project
90+
# Example: cd ~/projects/ai-nurse-florence-dashboard
7991
```
8092

8193
### 4.2 Initialize Railway project

website/WHOIS_COM_DNS_SETUP.md

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
Quick guide for adding CNAME records in whois.com for your Railway deployments.
44

5+
## Important Note
6+
7+
**Both subdomains are deployed from SEPARATE projects**, not from the main smartaimemory.com website.
8+
9+
- The main website remains at `smartaimemory.com`
10+
- Wizard examples will be deployed from your separate wizards project to `wizards.smartaimemory.com`
11+
- Healthcare dashboard will be deployed from your separate AI Nurse Florence project to `healthcare.smartaimemory.com`
12+
513
## Step-by-Step: Adding CNAME Records in Whois.com
614

715
### 1. Log in to Whois.com
@@ -198,9 +206,11 @@ If you can't find DNS settings:
198206

199207
## Complete Workflow for Tonight
200208

209+
**Important:** Deploy from your SEPARATE project directories, not the main website.
210+
201211
```bash
202-
# 1. Deploy wizards app
203-
cd /Users/patrickroebuck/empathy_11_6_2025/Empathy-framework/website
212+
# 1. Deploy wizards app from your separate wizards project
213+
cd /path/to/your-wizards-project
204214
railway login
205215
railway init
206216
railway variables set NEXT_PUBLIC_SITE_URL=https://wizards.smartaimemory.com
@@ -213,8 +223,8 @@ railway up
213223
# Host: wizards
214224
# Value: [paste Railway CNAME]
215225

216-
# 4. Deploy healthcare app
217-
cd /path/to/healthcare-dashboard
226+
# 4. Deploy healthcare app from your separate healthcare project
227+
cd /path/to/your-healthcare-project
218228
railway init
219229
railway variables set NEXT_PUBLIC_SITE_URL=https://healthcare.smartaimemory.com
220230
railway up

website/app/page.tsx

Lines changed: 0 additions & 94 deletions
Original file line numberDiff line numberDiff line change
@@ -211,100 +211,6 @@ export default function Home() {
211211
</div>
212212
</section>
213213

214-
{/* Example Projects Section */}
215-
<section id="examples" className="py-20">
216-
<div className="container">
217-
<h2 className="text-4xl font-bold text-center mb-4">
218-
Example Projects
219-
</h2>
220-
<p className="text-xl text-center text-[var(--text-secondary)] mb-12 max-w-3xl mx-auto">
221-
Real-world applications built with our technology stack
222-
</p>
223-
224-
<div className="max-w-5xl mx-auto grid gap-8">
225-
{/* Software Development Dashboard */}
226-
<div className="bg-[var(--background)] p-8 rounded-lg border-2 border-[var(--border)] hover:border-[var(--primary)] transition-all">
227-
<div className="flex flex-col md:flex-row gap-6">
228-
<div className="flex-1">
229-
<div className="flex items-center gap-3 mb-4">
230-
<div className="text-4xl">💻</div>
231-
<h3 className="text-2xl font-bold">Software Development Dashboard</h3>
232-
</div>
233-
<p className="text-[var(--text-secondary)] mb-4">
234-
Development analytics platform powered by Level 4 Anticipatory Intelligence.
235-
Predicts bugs before they happen, identifies security vulnerabilities, and
236-
optimizes performance across your codebase.
237-
</p>
238-
239-
<div className="space-y-2 mb-6">
240-
<h4 className="text-sm font-bold text-[var(--muted)] uppercase">Built With:</h4>
241-
<div className="flex flex-wrap gap-2">
242-
<span className="px-3 py-1 bg-[var(--primary)] text-white rounded-full text-sm font-semibold">
243-
Claude Code
244-
</span>
245-
<span className="px-3 py-1 bg-[var(--accent)] text-white rounded-full text-sm font-semibold">
246-
Empathy Framework
247-
</span>
248-
<span className="px-3 py-1 bg-[var(--secondary)] text-white rounded-full text-sm font-semibold">
249-
MemDocs
250-
</span>
251-
<span className="px-3 py-1 bg-[var(--muted)] text-white rounded-full text-sm font-semibold">
252-
VS Code
253-
</span>
254-
</div>
255-
</div>
256-
257-
<div className="space-y-3 mb-6">
258-
<div className="flex items-start gap-2">
259-
<span className="text-[var(--success)] mt-1"></span>
260-
<span className="text-sm"><strong>16+ Software Wizards</strong> for code analysis & optimization</span>
261-
</div>
262-
<div className="flex items-start gap-2">
263-
<span className="text-[var(--success)] mt-1"></span>
264-
<span className="text-sm"><strong>Predictive bug detection</strong> before code reaches production</span>
265-
</div>
266-
<div className="flex items-start gap-2">
267-
<span className="text-[var(--success)] mt-1"></span>
268-
<span className="text-sm"><strong>AI-powered test generation</strong> and coverage optimization</span>
269-
</div>
270-
</div>
271-
272-
<a
273-
href="/dev-dashboard"
274-
className="btn btn-primary"
275-
target="_blank"
276-
rel="noopener noreferrer"
277-
>
278-
View Dashboard →
279-
</a>
280-
</div>
281-
282-
<div className="md:w-1/3">
283-
<div className="bg-[var(--border)] bg-opacity-30 rounded-lg p-6 h-full flex flex-col justify-center">
284-
<div className="text-6xl text-center mb-4"></div>
285-
<p className="text-center text-sm text-[var(--muted)]">
286-
Real-time code intelligence preventing issues before deployment
287-
</p>
288-
</div>
289-
</div>
290-
</div>
291-
</div>
292-
293-
{/* More Examples Coming */}
294-
<div className="bg-[var(--background)] p-8 rounded-lg border-2 border-[var(--border)] border-dashed opacity-60">
295-
<div className="text-center">
296-
<div className="text-4xl mb-4">🚧</div>
297-
<h3 className="text-xl font-bold mb-2">More Examples Coming Soon</h3>
298-
<p className="text-[var(--text-secondary)]">
299-
AI agent orchestration, multi-model workflows, and more demonstrations
300-
of the transformative development stack.
301-
</p>
302-
</div>
303-
</div>
304-
</div>
305-
</div>
306-
</section>
307-
308214
{/* Technology Section */}
309215
<section className="py-20 bg-[var(--border)] bg-opacity-30">
310216
<div className="container">

0 commit comments

Comments
 (0)