INIT REPO

This commit is contained in:
William Jeynes
2026-06-23 11:57:18 +01:00
commit 77c2c3acdf
56 changed files with 14347 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
"use client";
import Customers from "@/components/home/customers";
import Header from "@/components/home/header";
import Testimonies from "@/components/home/testimonies";
export default function Home() {
return (
<div>
<Header />
<Customers />
<Testimonies />
</div>
);
}