File tree Expand file tree Collapse file tree 2 files changed +7
-14
lines changed Expand file tree Collapse file tree 2 files changed +7
-14
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ import Emoji from "@/components/Emoji"
16
16
import FeedbackCard from "@/components/FeedbackCard"
17
17
import InfoBanner from "@/components/InfoBanner"
18
18
import MainArticle from "@/components/MainArticle"
19
- import Text from "@/components/OldText"
20
19
import PageHero , {
21
20
type ContentType as PageHeroContent ,
22
21
} from "@/components/PageHero"
@@ -37,6 +36,13 @@ import { getRequiredNamespacesForPage } from "@/lib/utils/translations"
37
36
38
37
import oldship from "@/public/images/upgrades/oldship.png"
39
38
39
+ /**
40
+ * TODO: Consider replacing this with a global style for the `p` element
41
+ */
42
+ const Text = ( props : Omit < ComponentProps < "p" > , "className" > ) => (
43
+ < p className = "mb-[1.45rem]" { ...props } />
44
+ )
45
+
40
46
const Page = ( props : ChildOnlyProp ) => (
41
47
< VStack className = "w-full gap-0" { ...props } asChild >
42
48
< MainArticle { ...props } />
You can’t perform that action at this time.
0 commit comments