import type { Metadata } from "next";
import SharedHeader from "@/components/shared/SharedHeader";
import SolutionsHero from "@/components/solutions/SolutionsHero";
import ProcessSection from "@/components/solutions/ProcessSection";
import WhyChooseUs from "@/components/solutions/WhyChooseUs";
import TestimonialsSection from "@/components/solutions/TestimonialsSection";
import Footer from "@/components/shared/Footer";
import Services2 from "@/components/shared/Services2";

export const metadata: Metadata = {
  title: "Solutions",
  description:
    "Explore our range of IT solutions designed to streamline your business operations.",
};

export default function Solutions() {
  return (
    <>
      <SharedHeader />
      <SolutionsHero />
      <section className="service-sec2 space">
        <Services2 />
      </section>
      <ProcessSection />
      <WhyChooseUs />
      <TestimonialsSection />
      <Footer />
    </>
  );
}
