This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

chore: add noindex meta tags

+16
+1
src/webapp/app/(auth)/login/layout.tsx
··· 20 20 export const metadata: Metadata = { 21 21 title: 'Log in — Semble', 22 22 description: 'Welcome back', 23 + robots: { index: false, follow: true }, 23 24 }; 24 25 25 26 interface Props {
+14
src/webapp/app/(auth)/logout/layout.tsx
··· 1 + import { Metadata } from 'next'; 2 + 3 + export const metadata: Metadata = { 4 + title: 'Logging out — Semble', 5 + robots: { index: false, follow: true }, 6 + }; 7 + 8 + interface Props { 9 + children: React.ReactNode; 10 + } 11 + 12 + export default function Layout(props: Props) { 13 + return props.children; 14 + }
+1
src/webapp/app/(auth)/signup/layout.tsx
··· 4 4 export const metadata: Metadata = { 5 5 title: 'Sign up — Semble', 6 6 description: 'Sign up to get started', 7 + robots: { index: false, follow: true }, 7 8 }; 8 9 9 10 interface Props {