mirror of
https://github.com/supabase/supabase.git
synced 2026-06-18 13:43:53 +08:00
* feat: add SOC 2 page to docs * feat: more linking * fix: make linters happy * fix: prettier * chore: make security page available * typo: sp * publish security * chore: publish new security section * change mobile menu to show Security on Security section --------- Co-authored-by: Charis Lam <26616127+charislam@users.noreply.github.com>
6 lines
170 B
TypeScript
6 lines
170 B
TypeScript
import Layout from '~/layouts/guides'
|
|
|
|
export default async function SecurityLayout({ children }: { children: React.ReactNode }) {
|
|
return <Layout>{children}</Layout>
|
|
}
|