Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/example/internationalized-content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ export function InternationalizedContent() {
</p>
<div className={`flex gap-2 ${isRTL ? 'flex-row-reverse' : 'flex-row'}`}>
<button className="bg-primary text-primary-foreground px-4 py-2 rounded">
{t.marketing.hero.cta}
{t.marketing.hero.appointment}
</button>
<button className="border border-border px-4 py-2 rounded">
{t.marketing.hero.learnMore}
{t.marketing.hero.services}
</button>
</div>

Expand Down
8 changes: 4 additions & 4 deletions src/components/marketing/content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ export default function SiteContent({ dictionary, params }: SiteContentProps) {
</div>
</section>
<section className="py-10">
<FeatureCards dictionary={dictionary.marketing.featureCards} params={params} />
<FeatureCards />
</section>
<section className="py-10">
<Parallax dictionary={dictionary.marketing.parallax} params={params} />
<Parallax />
</section>
<section className="py-10">
<Ready dictionary={dictionary.marketing.ready} params={params} />
Expand All @@ -114,10 +114,10 @@ export default function SiteContent({ dictionary, params }: SiteContentProps) {
<OpenSource />
</section>
<section className="py-10">
<Stack dictionary={dictionary.marketing.stack} params={params} />
<Stack />
</section>
<section className="pt-10">
<ReadyToBuildSection dictionary={dictionary.marketing.readyToBuild} params={params} />
<ReadyToBuildSection />
</section>
</div>
);
Expand Down