File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ export function FAQ() {
59
59
< dt className = "text-base font-semibold leading-7 text-gray-900 dark:text-white" >
60
60
{ faq . question }
61
61
</ dt >
62
- < dd className = "mt-2 text-base leading-7 text-gray-600 dark:text-gray-300" >
62
+ < dd className = "prose mt-2 text-base leading-7 text-gray-600 dark:text-gray-300" >
63
63
{ faq . answer }
64
64
</ dd >
65
65
</ div >
Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ import { Footer } from "@/components/Footer";
5
5
6
6
export default function Layout ( { children } : { children : ReactNode } ) {
7
7
return (
8
- < HomeLayout { ... baseOptions } >
9
- { children }
8
+ < >
9
+ < HomeLayout { ... baseOptions } > { children } </ HomeLayout >
10
10
< Footer />
11
- </ HomeLayout >
11
+ </ >
12
12
) ;
13
13
}
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ function TierTitle({ tier }: { tier: Tier }) {
33
33
34
34
function TierPrice ( { tier, frequency } : { tier : Tier ; frequency : Frequency } ) {
35
35
return (
36
- < p className = "text-md font-semibold text-[#00000080] dark:text-[#FFFFFFB2] " >
36
+ < p className = "text-md text-fd-muted-foreground font-semibold " >
37
37
{ typeof tier . price === "string"
38
38
? tier . price
39
39
: `$${ tier . price [ frequency ] } / ${ frequency } ` }
@@ -92,7 +92,7 @@ function TierCTAButton({ tier }: { tier: Tier }) {
92
92
aria-describedby = { tier . id }
93
93
className = { classNames (
94
94
tier . mostPopular
95
- ? "text-fd-foreground bg-indigo-600 shadow-sm hover:bg-indigo-500"
95
+ ? "text-fd-background dark:text-fd- foreground bg-indigo-600 shadow-sm hover:bg-indigo-500"
96
96
: "text-indigo-600 ring-1 ring-inset ring-indigo-600 hover:text-indigo-500 hover:ring-indigo-500" ,
97
97
"mt-8 block cursor-pointer rounded-md px-3 py-2 text-center text-sm font-semibold leading-6 focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600" ,
98
98
) }
@@ -104,7 +104,7 @@ function TierCTAButton({ tier }: { tier: Tier }) {
104
104
105
105
function TierFeature ( { feature } : { feature : React . ReactNode } ) {
106
106
return (
107
- < li className = "flex gap-x-3" >
107
+ < li className = "prose flex gap-x-3 text-sm " >
108
108
< CheckIcon
109
109
aria-hidden = "true"
110
110
className = "h-6 w-5 flex-none text-indigo-600"
You can’t perform that action at this time.
0 commit comments