import HeroSection from "@/components/sections/HeroSection"; import WorksSection from "@/components/sections/WorksSection"; import ApproachSection from "@/components/sections/AppoachSection"; import TimelineSection from "@/components/sections/AboutSection"; 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 (
); }