The official website for LetPeopleWork GmbH, hosted at https://letpeople.work.
LetPeopleWork GmbH is a consultancy focused on helping organizations improve their software delivery and team effectiveness.
This website is built with modern web technologies:
- React - Frontend framework
- TypeScript - Type-safe JavaScript
- Vite - Build tool and development server
- Tailwind CSS - Utility-first CSS framework
- shadcn/ui - Modern component library
- Node.js (recommended: install via nvm)
- npm or yarn package manager
-
Clone the repository:
git clone https://github.com/LetPeopleWork/website.git cd website -
Install dependencies:
npm install
-
Start the development server:
npm run dev
-
Open your browser to
http://localhost:5173to view the site.
npm run buildThe built files will be in the dist directory.
This website is automatically deployed to GitHub Pages when changes are pushed to the main branch. The site is available at https://letpeople.work.
This website is optimized for search engines with the following features:
- ✅ Structured Data (JSON-LD): Organization, SoftwareApplication, BreadcrumbList, WebSite, and VideoObject schemas
- ✅ Enhanced Meta Tags: Comprehensive Open Graph and Twitter Card tags with image dimensions
- ✅ Resource Hints: Preconnect and DNS-prefetch for performance
- ✅ Lazy Loading: Images below the fold load lazily to improve Core Web Vitals
- ✅ Image Optimization: Width and height attributes on all images to prevent layout shift
- ✅ Updated Sitemap: Current lastmod dates with video sitemap support
- ✅ Breadcrumb Navigation: Structured data for better search result display
- ✅ Mobile Optimization: Theme color and apple-touch-icon support
To complete the SEO optimization, you need to manually add these files to the public/ directory:
- manifest.json - Create this file with the following content:
{
"name": "LetPeopleWork - Flow Metrics & Forecasting",
"short_name": "LetPeopleWork",
"description": "Transform your organization with Lighthouse - the leading open-source flow metrics and forecasting tool.",
"start_url": "/",
"display": "standalone",
"background_color": "#ffffff",
"theme_color": "#1a1a1a",
"orientation": "portrait-primary",
"icons": [
{
"src": "/favicon.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/favicon.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
}
],
"categories": ["business", "productivity"]
}-
apple-touch-icon.png - Create a 180x180px PNG icon:
- Use your favicon.png or logo
- Resize to 180x180 pixels
- Save as
apple-touch-icon.pngin thepublic/directory
-
Image Optimization - Convert images to WebP format:
- Use tools like Squoosh or ImageMagick
- Convert all PNG/JPG images in
src/assets/to WebP - Keep originals as fallbacks
- Update image imports to use WebP with PNG/JPG fallbacks
<picture>
<source srcSet="/image.webp" type="image/webp" />
<img src="/image.png" alt="Description" width="800" height="600" loading="lazy" />
</picture>- Verify your site ownership in Google Search Console
- Submit your sitemap:
https://letpeople.work/sitemap.xml - Monitor Core Web Vitals and indexing status
- Check for mobile usability issues
- Review rich results for structured data
- Fork the repository
- Create a feature branch
- Make your changes
- Test locally
- Submit a pull request
© 2025 LetPeopleWork GmbH. All rights reserved.