forked from
joebasser.com/atmosphere-account
this repo has no description
1import LottieSection from "./LottieSection.tsx";
2import { useT } from "../i18n/mod.ts";
3
4export default function OnePlace() {
5 const t = useT();
6
7 return (
8 <section class="section-sm reveal">
9 <div class="container-narrow text-center">
10 <LottieSection />
11 <h2 class="text-section">{t.onePlace.heading}</h2>
12 <div class="divider" />
13 <p class="text-body mt-2">{t.onePlace.body}</p>
14 <p class="text-body-sm mt-3 hub-examples-label">
15 {t.onePlace.examplesLabel}
16 </p>
17 <div class="hub-visual">
18 {t.onePlace.items.map((item) => (
19 <span key={item} class="hub-tag">
20 {item}
21 </span>
22 ))}
23 <span class="hub-tag hub-tag-more">{t.onePlace.moreTag}</span>
24 </div>
25 </div>
26 </section>
27 );
28}