Skip to content

Commit 6892879

Browse files
committed
Fix eslint issues
1 parent 8f68aa9 commit 6892879

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

application/account-management/WebApp/app/_landing/sections/CommunitySection.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ export function CommunitySection() {
3737
<h1 className="text-amber-600 text-base font-semibold">COMMUNITY</h1>
3838
<h2 className="text-gray-900 text-4xl md:text-6xl font-semibold">Join builders on PlatformPlatform</h2>
3939
<p className="text-slate-600 text-xl font-normal">
40-
Our community is full of developers, designers and founders - just like you, to get your going, sharing ideas and experiences. Join us now.
40+
Our community is full of developers, designers and founders -
41+
just like you, to get your going, sharing ideas and experiences. Join us now.
4142
</p>
4243
</div>
4344
<div className="grid grid-row-3 md:grid-cols-3 px-32 gap-16">
@@ -51,7 +52,7 @@ export function CommunitySection() {
5152
/>
5253
<FeatureBlock
5354
title="Slack"
54-
content="Chat with our team or other members of the PlatformPlatform community."
55+
content="Chat with our team or other members of the PlatfomaximusrmPlatform community."
5556
image={slackImageUrl}
5657
linker="https://slack.com"
5758
linkText="Join our Slack channel"

application/account-management/WebApp/app/_landing/sections/CtaSection.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ export function CtaSection() {
1919
</div>
2020
</div>
2121
);
22-
}
22+
}

application/account-management/WebApp/app/_landing/sections/FeatureSection2.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export function FeatureSection2() {
4040
);
4141
}
4242

43-
interface FeatureBlockProps { title: string; content: string }
43+
interface FeatureBlockProps { title: string, content: string, }
4444

4545
// FeatureBlock: Displays a single feature
4646
function FeatureBlock({ title, content }: FeatureBlockProps) {

application/account-management/WebApp/app/_landing/sections/FeatureSection4.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ export function FeatureSection4() {
88
</h1>
99
Built by Founders, Engineers and Designers
1010
<div className="text-slate-600 text-xl font-normal">
11-
Skip the many months it takes to build an enterprise grade and production ready setup. We’ve done the hard work for you so you can focus on your core product.
11+
Skip the many months it takes to build an enterprise grade and production ready setup.
12+
We’ve done the hard work for you so you can focus on your core product.
1213
</div>
1314
</div>
1415
<div className="flex md:flex-row flex-col gap-16 w-3/4">
@@ -59,4 +60,4 @@ function FeatureBlock({ title, content }: FeatureBlockProps) {
5960
}
6061

6162
// FeatureBlockProps: Type definition for the props of FeatureBlock component
62-
interface FeatureBlockProps { title: string; content: string }
63+
interface FeatureBlockProps { title: string, content: string, }

0 commit comments

Comments
 (0)