Initial project setup: BienMind website with Next.js and blog - #2
Open
chrix22 wants to merge 6 commits into
Open
Initial project setup: BienMind website with Next.js and blog#2chrix22 wants to merge 6 commits into
chrix22 wants to merge 6 commits into
Conversation
- Set up Next.js 15 with TypeScript, Tailwind CSS v4, and App Router - Create modern responsive layout with Header (mobile menu) and Footer - Build Home page with hero, services overview, testimonials, and CTA - Build About page with team, values, and company story - Build Services page with pricing, features, and FAQ - Build Contact page with form and business info - Create Markdown-based blog system with gray-matter and remark - Add 4 sample blog articles (stress, meditation, sleep, confidence) - Use local Inter and Playfair Display fonts - Apply green/purple wellness-themed color palette https://claude.ai/code/session_01FKMtTD38SMWJPS9iVwVc2Y
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
- Update color palette from green/purple to blue/tech - Rewrite Home page: SaaS studio positioning, Oliceo/SonoCrea products, tech expertise, stats - Rewrite About page: agentic studio vision, milestones, process (48h/7j/30j) - Rewrite Services page: products (Oliceo, SonoCrea) + services (MVP, IA, automation, prototyping) - Update Contact page: project-focused form, hello@bienmind.com, budget selector - Update Header: "Produits" nav, "Lancer votre projet" CTA - Update Footer: product links (oliceo.com, sonocrea.com), services, social (LinkedIn, X, GitHub) - Replace blog posts with SaaS/care topics: vertical SaaS, AI in care, 7-day MVP method, SonoCrea case study - Update all metadata and descriptions https://claude.ai/code/session_01FKMtTD38SMWJPS9iVwVc2Y
…ticles - Add Disclaimer component for non-medical wellness content notice - Update blog system with image and readingTime fields - Add related articles section to blog post pages - Update blog listing with featured post layout and reading time https://claude.ai/code/session_01FKMtTD38SMWJPS9iVwVc2Y
- 7 SVG illustrations for blog articles - First article: ia-bien-etre-revolution.md - More articles and illustrations being generated https://claude.ai/code/session_01FKMtTD38SMWJPS9iVwVc2Y
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR establishes the initial BienMind project structure - a mental wellness platform built with Next.js 15, featuring a complete website with blog functionality, service pages, and contact management.
Key Changes
Project Foundation
.gitignorefor Node.js/Next.js projectsCore Pages & Routing
/) - Landing page with hero, services overview, testimonials, and CTA/blog) - Blog listing with featured post and grid layout/blog/[slug]) - Dynamic blog post pages with markdown rendering/about) - Company story, values, and team information/services) - Service offerings with detailed descriptions/contact) - Contact form with business information and hoursBlog Content
Added 4 initial blog posts covering mental wellness topics:
Components & Utilities
lib/blog.ts) - Functions for reading and parsing markdown blog posts using gray-matter and remarkStyling & Design
Technical Details
content/blog/with frontmatter metadatahttps://claude.ai/code/session_01FKMtTD38SMWJPS9iVwVc2Y