11 lines
322 B
TypeScript
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
|
|
}
|