{"id":26614442,"url":"https://github.com/salatech/flowforge-landing","last_synced_at":"2026-05-10T19:15:40.024Z","repository":{"id":283861475,"uuid":"953118964","full_name":"salatech/FlowForge-Landing","owner":"salatech","description":"Flow Forge Landing page","archived":false,"fork":false,"pushed_at":"2025-03-22T16:22:18.000Z","size":5808,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-22T17:27:07.545Z","etag":null,"topics":["nextjs","typescript"],"latest_commit_sha":null,"homepage":"https://flowforge-landing.vercel.app/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/salatech.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-22T16:01:03.000Z","updated_at":"2025-03-22T16:25:45.000Z","dependencies_parsed_at":"2025-03-22T17:37:43.115Z","dependency_job_id":null,"html_url":"https://github.com/salatech/FlowForge-Landing","commit_stats":null,"previous_names":["salatech/flowforge-landing"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salatech%2FFlowForge-Landing","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salatech%2FFlowForge-Landing/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salatech%2FFlowForge-Landing/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/salatech%2FFlowForge-Landing/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/salatech","download_url":"https://codeload.github.com/salatech/FlowForge-Landing/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245212516,"owners_count":20578479,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["nextjs","typescript"],"created_at":"2025-03-24T05:19:44.622Z","updated_at":"2026-05-10T19:15:39.981Z","avatar_url":"https://github.com/salatech.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FlowForge Landing Page\n\nA modern, animated landing page for FlowForge, a growth agency that helps early-stage companies transform ideas into scalable businesses.\n\n![FlowForge Landing Page](https://res.cloudinary.com/dvd8hlffl/video/upload/v1742659549/Screen_Recording_2025-03-22_at_17.04.01_saosqo.mov)\n\n## Features\n\n- **Responsive Design**: Optimized for all device sizes from mobile to desktop\n- **Modern UI**: Clean, professional design with gradients, animations, and interactive elements\n- **Animation Effects**: Smooth scroll-triggered animations, counters, and hover states\n- **Performance Optimized**: Built with Next.js and React for optimal performance\n- **Component-Based Architecture**: Modular design for easy maintenance and extensibility\n\n## Tech Stack\n\n- **Framework**: Next.js (App Router)\n- **UI**: React with TypeScript\n- **Styling**: Tailwind CSS\n- **Icons**: Lucide React\n- **Animations**: CSS transitions and Intersection Observer API\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js 16.8.0 or later\n- npm or yarn\n\n### Installation\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/your-username/flowforge-landing.git\n   cd flowforge-landing\n   ```\n\n2. Install dependencies:\n   ```bash\n   npm install\n   # or\n   yarn install\n   ```\n\n3. Start the development server:\n   ```bash\n   npm run dev\n   # or\n   yarn dev\n   ```\n\n4. Open [http://localhost:3000](http://localhost:3000) in your browser to see the result.\n\n## Project Structure\n\n```\nflowforge-landing/\n├── app/\n│   ├── page.tsx        # Main landing page component\n│   ├── layout.tsx      # Root layout\n├── components/         # Reusable UI components\n├── public/             # Static assets\n│   ├── images/         # Image files\n├── styles/             # Global styles\n├── next.config.js      # Next.js configuration\n├── tailwind.config.js  # Tailwind CSS configuration\n├── tsconfig.json       # TypeScript configuration\n└── package.json        # Project dependencies\n```\n\n## Key Components\n\n### Hero Section\nIntroduces the brand with a catchy headline, descriptive subtitle, and animated background.\n\n### Stats Section\nDisplays key metrics with animated counters:\n- Generated revenue amount\n- Turnaround time\n- Success rate\n- Number of clients\n\n### Services Section\nShowcases the main service offerings:\n- Market Analysis\n- Customer Acquisition\n- Scaling Solutions\n\n### Testimonials Section\nClient testimonials with ratings to build trust and credibility.\n\n### CTA Section\nProminent call-to-action to encourage visitor engagement.\n\n## Animation Features\n\n### Intersection Observer\nThe page uses the Intersection Observer API to trigger animations when elements come into view:\n\n```typescript\nuseEffect(() =\u003e {\n  const observer = new IntersectionObserver(\n    (entries) =\u003e {\n      entries.forEach((entry) =\u003e {\n        if (entry.isIntersecting) {\n          startCounters();\n          observer.disconnect();\n        }\n      });\n    },\n    { threshold: 0.1 }\n  );\n\n  if (statsRef.current) {\n    observer.observe(statsRef.current);\n  }\n\n  return () =\u003e observer.disconnect();\n}, []);\n```\n\n### Animated Counters\nImplements smooth counting animations for displaying statistics:\n\n```typescript\nconst startCounters = () =\u003e {\n  const maxRevenue = 7000000;\n  const maxClients = 40;\n  const duration = 2500;\n  const interval = 16;\n  const steps = duration / interval;\n\n  let revenueStep = maxRevenue / steps;\n  let clientStep = maxClients / steps;\n\n  const timer = setInterval(() =\u003e {\n    setRevenue((prev) =\u003e {\n      const newValue = prev + revenueStep;\n      return newValue \u003e= maxRevenue ? maxRevenue : newValue;\n    });\n\n    setCounter((prev) =\u003e {\n      const newValue = prev + clientStep;\n      return newValue \u003e= maxClients ? maxClients : newValue;\n    });\n  }, interval);\n\n  return () =\u003e clearInterval(timer);\n};\n```\n\n## Customization\n\n### Changing Content\nTo modify the website content, edit the text within the JSX elements in `page.tsx`.\n\n### Modifying Services\nThe services section can be customized by editing the `services` array:\n\n```typescript\nconst services = [\n  {\n    title: \"Market Analysis\",\n    icon: \u003cTrendingUp className=\"h-6 w-6\" /\u003e,\n    description: \"Comprehensive market research and competitor analysis to position your business effectively.\",\n    color: \"from-blue-500 to-cyan-400\"\n  },\n  // Add or modify services here\n];\n```\n\n### Updating Stats\nTo change the statistics displayed, modify the stats array in the Stats Section:\n\n```typescript\n[\n  { \n    icon: \u003cBarChart className=\"h-5 w-5\" /\u003e, \n    label: \"Generated\", \n    value: formatRevenue(revenue),\n    delay: \"200ms\" \n  },\n  // Update or add more stats here\n]\n```\n\n### Changing Colors\nTo modify the color scheme, update the gradient classes in the Tailwind CSS classes:\n\n```html\n\u003cdiv className=\"bg-gradient-to-r from-blue-500 to-indigo-600\"\u003e\n  \u003c!-- Content --\u003e\n\u003c/div\u003e\n```\n\n## Deployment\n\nThis project can be easily deployed to Vercel, Netlify, or any other platform that supports Next.js.\n\n### Deploy to Vercel\n\nThe easiest way to deploy the app is to use the [Vercel Platform](https://vercel.com):\n\n```bash\nnpm install -g vercel\nvercel\n```\n\n### Build for Production\n\n```bash\nnpm run build\n# or\nyarn build\n```\n\nThis will create an optimized production build in the `.next` folder.\n\n## Browser Support\n\nThis landing page is compatible with:\n- Chrome (latest)\n- Firefox (latest)\n- Safari (latest)\n- Edge (latest)\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n## Acknowledgments\n\n- Icons by [Lucide React](https://lucide.dev/)\n- Animations inspired by [Framer Motion](https://www.framer.com/motion/)\n- Design patterns from modern SaaS landing pages\n\n---\n\nCreated with ❤️ by SalaTech  for FlowForge\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsalatech%2Fflowforge-landing","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsalatech%2Fflowforge-landing","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsalatech%2Fflowforge-landing/lists"}