tangled
alpha
login
or
join now
grain.social
/
grain
38
fork
atom
grain.social is a photo sharing platform built on atproto.
38
fork
atom
overview
issues
2
pulls
pipelines
add titles to legal pages
chadtmiller.com
9 months ago
6a3cd019
9c87a963
+3
1 changed file
expand all
collapse all
unified
split
src
routes
legal.tsx
+3
src/routes/legal.tsx
···
7
7
_params,
8
8
ctx: BffContext<State>,
9
9
) => {
10
10
+
ctx.state.meta = [{ title: "Terms — Grain" }];
10
11
return ctx.render(
11
12
<Terms />,
12
13
);
···
17
18
_params,
18
19
ctx: BffContext<State>,
19
20
) => {
21
21
+
ctx.state.meta = [{ title: "Privacy Policy — Grain" }];
20
22
return ctx.render(
21
23
<PrivacyPolicy />,
22
24
);
···
27
29
_params,
28
30
ctx: BffContext<State>,
29
31
) => {
32
32
+
ctx.state.meta = [{ title: "Copyright Policy — Grain" }];
30
33
return ctx.render(
31
34
<CopyrightPolicy />,
32
35
);