20 lines
324 B
TypeScript
20 lines
324 B
TypeScript
"use server";
|
|
|
|
import { redirect } from "next/navigation";
|
|
import React from "react";
|
|
|
|
interface WebPageProps {
|
|
// Add your props here if needed
|
|
}
|
|
|
|
const WebPage: React.FC<WebPageProps> = () => {
|
|
redirect("/building");
|
|
return (
|
|
<div>
|
|
<h1>Going to go to Evyos</h1>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default WebPage;
|