import { Footer } from '@/src/layout/footer/v2';
import { MainHeader } from '@/src/layout/header';

import { HeroSection } from '@/src/sections/hero/v3';
import { Plant } from '@/src/sections/plant/v1';

import { Metadata } from 'next';

export const metadata: Metadata = {
  title: 'SciTech',
  description: 'SciTech - IT Solutions and Services React Nextjs Template',
};

export default function Page() {
  return (
    <>
      <MainHeader />
      <HeroSection
        title="Web Solution for Enhanced Plant Data Management at the National Institute of Biotechnology"
        breadcrumbItems={[
          {
            label: 'Projects',
            href: '/project',
          },
          {
            label: 'Project Details',
          },
        ]}
      />
      <Plant />
      <Footer />
    </>
  );
}
