alpha
Login
or
Join now
nandi.uk
/
semble
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
chore: add noindex meta tags
author
pdelfan
date
2 months ago
(May 21, 2026, 9:59 AM -0700)
commit
e7df79be
e7df79be1e5eeae128dc082ee14f7c7e1aa49135
parent
20ea1beb
20ea1bebf9e591736c94a053bee2674bd420540e
+16
3 changed files
Expand all
Collapse all
Unified
Split
src
webapp
app
(auth)
login
layout.tsx
logout
layout.tsx
signup
layout.tsx
+1
src/webapp/app/(auth)/login/layout.tsx
View file
Reviewed
···
20
20
export const metadata: Metadata = {
21
21
title: 'Log in — Semble',
22
22
description: 'Welcome back',
23
23
+
robots: { index: false, follow: true },
23
24
};
24
25
25
26
interface Props {
+14
src/webapp/app/(auth)/logout/layout.tsx
View file
Reviewed
···
1
1
+
import { Metadata } from 'next';
2
2
+
3
3
+
export const metadata: Metadata = {
4
4
+
title: 'Logging out — Semble',
5
5
+
robots: { index: false, follow: true },
6
6
+
};
7
7
+
8
8
+
interface Props {
9
9
+
children: React.ReactNode;
10
10
+
}
11
11
+
12
12
+
export default function Layout(props: Props) {
13
13
+
return props.children;
14
14
+
}
+1
src/webapp/app/(auth)/signup/layout.tsx
View file
Reviewed
···
4
4
export const metadata: Metadata = {
5
5
title: 'Sign up — Semble',
6
6
description: 'Sign up to get started',
7
7
+
robots: { index: false, follow: true },
7
8
};
8
9
9
10
interface Props {