import SectionTitle from '@/components/layout/sectionTitle'; import { getTranslations } from 'next-intl/server'; import { TLocales } from '@/models/layout'; import { getProjects } from '@/services/projects'; import ProjectsGrid from '../project/ProjectGrid'; import Button from '@/components/uikit/button'; import routeFactory from '@/assets/constants/routeFactory'; import ProjectsGridView from '../project/projectGridView'; import ProjectsGridSlider from '../project/projectsGridSlider'; interface Props { locale: TLocales; } export default async function HomePageProjects({ locale }: Props) { const t = await getTranslations({ locale }); const projects = await getProjects(); const routes = routeFactory(t, locale); return (

{t('com_home_projects_description')}

); }