feat: repo scanner

This commit is contained in:
Nik L
2026-03-16 17:02:44 -04:00
parent 1c89ab47fc
commit adea1fec5b
6 changed files with 777 additions and 0 deletions

10
app/greyscan/layout.tsx Normal file
View File

@@ -0,0 +1,10 @@
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
}