missed changes from github

This commit is contained in:
William Jeynes
2026-06-23 12:38:46 +01:00
parent 77c2c3acdf
commit 6538d99b6c
11 changed files with 710 additions and 254 deletions
+21 -15
View File
@@ -1,15 +1,21 @@
"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>
);
}
"use client";
import Customers from "@/components/home/customers";
import Header from "@/components/home/header";
import Testimonies from "@/components/home/testimonies";
function Separator() {
return <div className="w-[80%] py-[1px] bg-gray-500" />;
}
export default function Home() {
return (
<div className="flex flex-col items-center justify-between gap-10">
<Header />
<Separator />
<Customers />
<Separator />
<Testimonies />
</div>
);
}