Files
vibn-agent-runner/vibn-frontend/app/(marketing)/page.tsx

19 lines
425 B
TypeScript

import NewSite from "./new-site";
// Dev-only accent color switcher (auto-hidden in production). Remove these two
// lines to take it out entirely.
import AccentSwitcher from "./AccentSwitcher";
import "../styles/new-site.css";
export const metadata = {
title: "Vibn — Keep vibing. All the way to launch.",
};
export default function Page() {
return (
<>
<NewSite />
<AccentSwitcher />
</>
);
}