11 lines
221 B
TypeScript
11 lines
221 B
TypeScript
import NewSite from "@/marketing/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 />;
|
|
}
|