import type { Metadata } from "next";

import { MarketingLayout } from "@/layouts/MarketingLayout";

import { ServicePagesClosingSections } from "@/sections/ServicePagesClosingSections";

import {

  SistemasCustomSection,

  SistemasHeroSection,

  SistemasShowcaseSection,

  SistemasStacksSection,

  SistemasTrustSection,

  SistemasTypesSection,

} from "@/sections/sistemas/SistemasSections";

import { sistemasSeo } from "@/data/sistemas";



export const metadata: Metadata = {

  title: sistemasSeo.title,

  description: sistemasSeo.description,

  openGraph: {

    title: sistemasSeo.title,

    description: sistemasSeo.description,

  },

};



export default function SistemasPage() {

  return (

    <MarketingLayout>

      <SistemasHeroSection />

      <SistemasShowcaseSection />

      <SistemasStacksSection />

      <SistemasTypesSection />

      <SistemasTrustSection />

      <SistemasCustomSection />

      <ServicePagesClosingSections service="sistemas" />

    </MarketingLayout>

  );

}

