import { constructMetadata } from "@/lib/seo"; import { getAllProjects } from "@/data/projects"; import AboutView from "@/components/sections/about/AboutView"; export const metadata = constructMetadata({ title: "About", description: "Cerkel is a product engineering agency — 150+ products shipped for startups and enterprises across 12+ countries. Meet the team, process and track record behind the work.", path: "/about", }); export default function AboutPage() { const projects = getAllProjects(); return ; }