11 lines
233 B
TypeScript
11 lines
233 B
TypeScript
import NewSite from "@/marketing/components/new-site";
|
|
import "../styles/new-site.css";
|
|
|
|
export const metadata = {
|
|
title: "Vibn — Keep vibing. All the way to launch.",
|
|
};
|
|
|
|
export default function Page() {
|
|
return <NewSite />;
|
|
}
|