17 lines
204 B
TypeScript
17 lines
204 B
TypeScript
"use server"
|
|
|
|
export default async function About() {
|
|
return (
|
|
<main>
|
|
<div>
|
|
About us
|
|
will :
|
|
+explain what we
|
|
+pricing
|
|
|
|
+plannign for what will come next
|
|
</div>
|
|
</main>
|
|
)
|
|
}
|