import { Button } from "@/components/ui/button"; import { useNavigate } from "react-router-dom"; import { useAuth } from "@/lib/auth-context"; import { useEffect, useState } from "react"; import { ArrowRight, Check, BarChart3, Users, Calendar, Clock } from "lucide-react"; import { getVersionString } from "@/lib/version"; const LandingPage = () => { const navigate = useNavigate(); const { isAuthenticated } = useAuth(); const [isMobile, setIsMobile] = useState(false); useEffect(() => { const handleResize = () => { setIsMobile(window.innerWidth < 768); }; handleResize(); window.addEventListener('resize', handleResize); return () => { window.removeEventListener('resize', handleResize); }; }, []); const handleGetStarted = () => { if (isAuthenticated) { navigate("/tasks"); } else { navigate("/login"); } }; return (
{/* Navigation */}

Synthesys

Project Management

{!isAuthenticated ? ( <> ) : ( )}
{/* Hero Section */}
Project Management Tool

Manage Projects with Precision and Ease

Streamline your workflow, track progress, and collaborate seamlessly with our comprehensive project management solution.

Free trial
No credit card
Cancel anytime
{/* Dashboard Preview */}
{/* Decorative elements */}
{/* Features Section */}
Key Features

Everything You Need to Manage Projects

Our comprehensive platform provides all the tools needed to plan, execute, and track your projects from start to finish.

Task Management

Create, assign, and track tasks with custom statuses, priorities, and deadlines. Keep everyone on the same page.

Team Collaboration

Work together seamlessly with real-time updates, notifications, and shared workspaces for efficient teamwork.

Advanced Analytics

Gain insights with detailed reports, progress tracking, and performance metrics to make data-driven decisions.

Streamlined Project Management

Our intuitive interface makes it easy to manage complex projects, coordinate teams, and meet deadlines consistently.

  • Customizable workflows to match your process
  • Powerful filtering and search capabilities
  • Time tracking and resource management
  • Calendar and Gantt chart views
{/* Testimonials Section */}
Testimonials

Trusted by Teams Worldwide

See what our customers are saying about how Synthesys PM Tool has transformed their project management.

{[...Array(5)].map((_, i) => ( ))}

"Synthesys PM Tool has completely transformed how our team manages projects. The intuitive interface and powerful features have increased our productivity by 40%."

JD

John Doe

Project Manager, TechCorp

{[...Array(5)].map((_, i) => ( ))}

"We've tried many project management tools, but Synthesys stands out with its comprehensive feature set and ease of use. Our team adopted it immediately."

SS

Sarah Smith

CTO, Innovation Inc

{[...Array(5)].map((_, i) => ( ))}

"The analytics and reporting features in Synthesys PM Tool have given us valuable insights into our workflow and helped us optimize our processes."

MJ

Michael Johnson

Director, Global Solutions

{/* Benefits Section */}
Benefits

Why Choose Synthesys PM Tool?

Our platform is designed to help teams of all sizes deliver projects successfully, on time, and within budget.

Save Time

Automate repetitive tasks and streamline workflows to focus on what matters.

Improve Collaboration

Connect your team with real-time updates and centralized information.

Data-Driven Insights

Make informed decisions with comprehensive analytics and reporting.

Meet Deadlines

Stay on track with calendar views, reminders, and progress tracking.

Project Overview
Q3 2023
Website Redesign 78%
Mobile App Development 45%
Marketing Campaign 92%

Team Members

View all
JD
SS
MJ
AR
+3
{/* Decorative elements */}
{/* Pricing Section */}
Pricing

Simple, Transparent Pricing

Choose the plan that best fits your team's needs. All plans include core features with no hidden fees.

Starter

Perfect for small teams

$9 /user/month
  • Up to 10 projects
  • Basic reporting
  • 5GB storage
  • Community support
Most Popular

Professional

For growing teams

$19 /user/month
  • Unlimited projects
  • Advanced analytics
  • 20GB storage
  • Priority email support
  • Custom workflows

Enterprise

For large organizations

$39 /user/month
  • Unlimited everything
  • Advanced security
  • Unlimited storage
  • 24/7 phone support
  • Dedicated account manager
  • Custom integrations

Need a custom plan? Contact us for a tailored solution.

{/* CTA Section */}

Ready to Transform Your Project Management?

Join thousands of teams that use Synthesys PM Tool to deliver successful projects on time and within budget.

{/* Footer */}
); }; export default LandingPage;