Files
greywall-landing-page/app/greyscan/layout.tsx
2026-03-16 17:02:44 -04:00

11 lines
322 B
TypeScript

import type { Metadata } from 'next'
export const metadata: Metadata = {
title: 'Greyscan | Greywall',
description: 'Scan your repo and see what an unrestricted AI agent would attempt. Powered by Greywall.',
}
export default function ExposureLayout({ children }: { children: React.ReactNode }) {
return children
}