Skip to content

Commit a797aac

Browse files
author
Bryan Wills
committed
feat: Update NutriSync to MealForge and change development server port to 4000. Replace all NutriSync references with MealForge throughout the website including project descriptions, hero CTAs, and about page timeline. Update project features to reflect MealForge's focus on recipe management. Change all language from 'launched' to 'started development' and 'delivering' to 'building' to accurately reflect development status. Update Next.js configuration and package.json scripts to use port 4000 instead of 3000 to avoid conflicts with other development projects. PM2 process now runs on port 4000.
1 parent d89f0c7 commit a797aac

File tree

7 files changed

+30
-26
lines changed

7 files changed

+30
-26
lines changed

IMPLEMENTATION_PLAN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Big Brain Coding is a software development company specializing in modern web te
1111
- Chrome Extension Development
1212

1313
## Product Portfolio (Placeholder Names)
14-
1. **NutriSync** - AI-powered meal planning app with grocery integration
14+
1. **MealForge** - AI-powered meal planning app with recipe management
1515
2. **MindMate** - ADHD/Neurodiverse AI Assistant for habit tracking
1616
3. **AccessiView** - Chrome extension for neurodiverse-friendly browsing
1717

TRACKING_README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ trackEvent('contact_form_submitted', {
111111
});
112112

113113
trackEvent('project_viewed', {
114-
projectId: 'nutrisync',
114+
projectId: 'mealforge',
115115
source: 'homepage'
116116
});
117117
```

next.config.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ const nextConfig = {
1111
// Enable experimental features if needed
1212
experimental: {
1313
// Add any experimental features here
14+
},
15+
// Set the port for development server
16+
env: {
17+
PORT: '4000'
1418
}
1519
}
1620

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
"version": "0.1.0",
44
"private": true,
55
"scripts": {
6-
"dev": "next dev --turbopack",
6+
"dev": "next dev --turbopack -p 4000",
77
"build": "next build",
8-
"start": "next start",
8+
"start": "next start -p 4000",
99
"lint": "next lint"
1010
},
1111
"dependencies": {

src/app/about/page.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const values = [
1717
{
1818
icon: Target,
1919
title: 'Excellence in Delivery',
20-
description: 'We strive for excellence in every project, delivering high-quality solutions on time.'
20+
description: 'We strive for excellence in every project, building high-quality solutions on time.'
2121
},
2222
{
2323
icon: Users,
@@ -32,7 +32,7 @@ const values = [
3232
{
3333
icon: Zap,
3434
title: 'Fast & Efficient',
35-
description: 'We deliver results quickly without compromising on quality or attention to detail.'
35+
description: 'We build solutions quickly without compromising on quality or attention to detail.'
3636
},
3737
{
3838
icon: Globe,
@@ -60,13 +60,13 @@ const milestones = [
6060
},
6161
{
6262
id: 'first-projects',
63-
year: '2024',
63+
year: '2025',
6464
title: 'First Projects',
65-
description: 'Successfully launched our first projects including NutriSync, MindMate, and AccessiView.'
65+
description: 'Started development on our first projects including MealForge, MindMate, and AccessiView.'
6666
},
6767
{
6868
id: 'technology-stack',
69-
year: '2024',
69+
year: '2025',
7070
title: 'Technology Stack',
7171
description: 'Established our modern technology stack with Next.js, TypeScript, and AI integration.'
7272
},

src/app/projects/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const projectStats = [
2020
icon: Users,
2121
value: '100%',
2222
label: 'Client Satisfaction',
23-
description: 'Delivering exceptional results'
23+
description: 'Building exceptional solutions'
2424
},
2525
{
2626
icon: Clock,
@@ -192,7 +192,7 @@ export default function ProjectsPage() {
192192
<div>
193193
<h5 className="font-medium text-sm text-muted-foreground">Results</h5>
194194
<p className="text-sm mt-1">
195-
Delivering high-quality solutions that exceed client expectations and drive business growth.
195+
Building high-quality solutions that exceed client expectations and drive business growth.
196196
</p>
197197
</div>
198198
</div>
@@ -249,7 +249,7 @@ export default function ProjectsPage() {
249249
variants={fadeInUp}
250250
className="mt-4 text-lg text-muted-foreground"
251251
>
252-
We follow a systematic approach to deliver exceptional results
252+
We follow a systematic approach to build exceptional solutions
253253
</motion.p>
254254
</motion.div>
255255

src/lib/constants.ts

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,21 @@ export const NAVIGATION: NavigationItem[] = [
1818

1919
export const PROJECTS: Project[] = [
2020
{
21-
id: 'nutrisync',
22-
name: 'NutriSync',
23-
shortDescription: 'AI-powered meal planning with grocery integration',
24-
description: 'An intelligent meal planning application that uses AI to suggest recipes, manage dietary preferences, and integrate with grocery stores for seamless shopping.',
25-
image: '/images/projects/nutrisync.jpg',
26-
technologies: ['React', 'TypeScript', 'AI/ML', 'Node.js', 'PostgreSQL'],
21+
id: 'mealforge',
22+
name: 'MealForge',
23+
shortDescription: 'AI-powered meal planning with recipe management',
24+
description: 'An intelligent meal planning application that uses AI to suggest recipes, manage dietary preferences, and provide comprehensive meal planning solutions.',
25+
image: '/images/projects/mealforge.jpg',
26+
technologies: ['React', 'TypeScript', 'AI/ML', 'Node.js', 'PostgreSQL', 'Next.js'],
2727
status: 'development',
2828
features: [
2929
'AI-powered recipe suggestions',
3030
'Dietary preference management',
31-
'Ingredient substitution',
32-
'Recipe scaling (2x, 4x, 1/2)',
31+
'Recipe management and organization',
32+
'Meal planning tools',
33+
'Recipe scaling capabilities',
3334
'Grocery list generation',
34-
'Kroger & Walmart API integration',
35-
'Direct grocery ordering'
35+
'Modern web interface'
3636
],
3737
},
3838
{
@@ -150,12 +150,12 @@ export const SERVICES: Service[] = [
150150

151151
export const HERO_CTAS: HeroCTA[] = [
152152
{
153-
id: 'nutrisync-cta',
153+
id: 'mealforge-cta',
154154
title: 'Revolutionize Your Meal Planning',
155-
description: 'Discover NutriSync - the AI-powered meal planning app that makes healthy eating effortless.',
156-
projectId: 'nutrisync',
155+
description: 'Discover MealForge - the AI-powered meal planning app that makes healthy eating effortless.',
156+
projectId: 'mealforge',
157157
ctaText: 'Learn More',
158-
ctaLink: '/projects#nutrisync',
158+
ctaLink: '/projects#mealforge',
159159
},
160160
{
161161
id: 'mindmate-cta',

0 commit comments

Comments
 (0)