import HeroSection from "@/app/[locale]/_components/HeroSection"; import WorksSection from "@/app/[locale]/_components/WorksSection"; import ApproachSection from "@/app/[locale]/_components/AppoachSection"; import TimelineSection from "@/app/[locale]/_components/AboutSection"; import FreelanceSection from "@/app/[locale]/_components/FreelanceSection"; import { getAllProjects } from "@/lib/projects/get-projects"; type props = { params: Promise<{ locale: string; }>; }; export default async function Home({ params }: props) { const { locale } = await params; const projects = getAllProjects(locale).filter((item) => item.ready); return (
); }