Update app/services/page.tsx

This commit is contained in:
kleap-admin 2026-01-18 18:54:18 +00:00
parent 5156b4ae53
commit 4de297c8ef
1 changed files with 11 additions and 0 deletions

11
app/services/page.tsx Normal file
View File

@ -0,0 +1,11 @@
import { Services } from "@/components/services";
import { Footer } from "@/components/footer";
export default function ServicesPage() {
return (
<main className="pt-20">
<Services />
<Footer />
</main>
);
}