2025-06-03 16:57:33 +03:30
|
|
|
import images from '@/assets/images/images';
|
|
|
|
|
import InnerPageBanner from '@/components/layout/innerPages/banner';
|
|
|
|
|
import ProjectsGrid from '@/components/pages/project/ProjectGrid';
|
2025-06-09 11:29:54 +03:30
|
|
|
import { IPageParams } from '@/models/layout';
|
2025-06-07 16:31:52 +03:30
|
|
|
import { getTranslations } from 'next-intl/server';
|
2025-06-03 16:57:33 +03:30
|
|
|
|
2025-06-09 11:29:54 +03:30
|
|
|
export default async function Projects({ params }: { params: IPageParams }) {
|
|
|
|
|
const { locale } = await params;
|
|
|
|
|
const t = await getTranslations({ locale });
|
2025-06-03 16:57:33 +03:30
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<main className="flex flex-col items-center justify-between">
|
|
|
|
|
<InnerPageBanner
|
2025-06-07 16:31:52 +03:30
|
|
|
title={t('pages_projects_title')}
|
2025-06-03 16:57:33 +03:30
|
|
|
imageSrc={images.blogBanner.src}
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<ProjectsGrid />
|
|
|
|
|
</main>
|
|
|
|
|
);
|
|
|
|
|
}
|