import { Footer } from '@/src/layout/footer/v2';
import { MainHeader } from '@/src/layout/header';
import { Fordo } from '@/src/sections/fordo/v1';
import { HeroSection } from '@/src/sections/hero/v3';

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="Fordo - All Your Grocery Lists"
        breadcrumbItems={[
          {
            label: 'Projects',
            href: '/project',
          },
          {
            label: 'Project Details',
          },
        ]}
      />
      <Fordo />
      <Footer />
    </>
  );
}
