Files
latosa-escrima/frontend/app/(main)/about/page.tsx
cdricms 683a8c3133 Yes
2025-01-15 11:54:39 +01:00

15 lines
265 B
TypeScript

"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
</div>
</div>
);
}