This commit is contained in:
cdricms
2025-01-15 11:54:39 +01:00
parent d18245736f
commit 683a8c3133
13 changed files with 165 additions and 69 deletions

View File

@@ -1,16 +1,14 @@
"use server"
"use server";
export default async function About() {
const res = await fetch("http://localhost:8000/api");
console.log(res);
return (
<div>
<div>
About us
will :
+explain what we
+pricing
+plannign for what will come next
About us will : +explain what we +pricing +plannign for what
will come next
</div>
</div>
)
);
}