Skip to content

Commit 63ad151

Browse files
committed
Fix build errors
1 parent 42c52c2 commit 63ad151

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/sponsor/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function LightButtonLink({ className, ...props }: React.ComponentProps<"a">) {
4545
);
4646
}
4747

48-
export function Eyebrow({
48+
function Eyebrow({
4949
as = "p",
5050
className,
5151
color = "gray",
@@ -606,7 +606,7 @@ function PartnerPlans() {
606606
);
607607
}
608608

609-
export function FaqGroup({ title, children }: { title: string; children: React.ReactNode }) {
609+
function FaqGroup({ title, children }: { title: string; children: React.ReactNode }) {
610610
return (
611611
<div className="group">
612612
<Eyebrow as="h3" className="px-4 py-2 sm:px-2">
@@ -617,7 +617,7 @@ export function FaqGroup({ title, children }: { title: string; children: React.R
617617
);
618618
}
619619

620-
export function Faq({ question, children }: { question: string; children: React.ReactNode }) {
620+
function Faq({ question, children }: { question: string; children: React.ReactNode }) {
621621
let id =
622622
"faq-" +
623623
question

0 commit comments

Comments
 (0)