Skip to content

Commit 06c595b

Browse files
committed
style: format code style and whitespace consistently
1 parent 0412083 commit 06c595b

File tree

6 files changed

+18
-24
lines changed

6 files changed

+18
-24
lines changed

src/app/(about)/overview/_components/organising-team.tsx

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -44,22 +44,19 @@ const team = [
4444
content: () => {
4545
return (
4646
<p>
47-
I am a Quality Assurance Engineer with over six years
48-
of experience in the tech ecosystem. My background includes
49-
roles in software engineering,
50-
product management, digital marketing, and event organization within the
51-
tech community.
52-
I actively contribute to the tech landscape as a member of the
53-
Code of Conduct (CoC)
54-
for the Python Software Foundation and as the volunteer co-chair
55-
for DjangoConUs. Additionally,
56-
I serve on the CoC for Droidcon Kenya and the API Festival and for
57-
Women Techmakers by Google.
47+
I am a Quality Assurance Engineer with over six years of experience in
48+
the tech ecosystem. My background includes roles in software
49+
engineering, product management, digital marketing, and event
50+
organization within the tech community. I actively contribute to the
51+
tech landscape as a member of the Code of Conduct (CoC) for the Python
52+
Software Foundation and as the volunteer co-chair for DjangoConUs.
53+
Additionally, I serve on the CoC for Droidcon Kenya and the API
54+
Festival and for Women Techmakers by Google.
5855
<br /> <br />
59-
My mission is to enhance technology by helping and connecting engineers
60-
and fostering a collaborative environment where innovation can thrive.
56+
My mission is to enhance technology by helping and connecting
57+
engineers and fostering a collaborative environment where innovation
58+
can thrive.
6159
</p>
62-
6360
);
6461
},
6562
},

src/app/(about)/schedule/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ export default function Home() {
88
</div>
99
</div>
1010
);
11-
}
11+
}

src/app/globals.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@import 'tailwindcss';
1+
@import "tailwindcss";
22

33
@plugin 'tailwindcss-animate';
44

src/components/mdx.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,7 @@ const components = {
5959
/>
6060
),
6161
p: ({ className = "" as string, ...props }) => (
62-
<p
63-
className={cn("leading-7 not-first:mt-6", className)}
64-
{...props}
65-
/>
62+
<p className={cn("leading-7 not-first:mt-6", className)} {...props} />
6663
),
6764
ul: ({ className = "" as string, ...props }) => (
6865
<ul className={cn("my-6 ml-6 list-disc", className)} {...props} />

src/components/ui/rainbow-button.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ export function RainbowGreyButton({
5858
{children}
5959
</button>
6060
);
61-
}
61+
}

src/components/ui/skeleton.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { cn } from "@/lib/utils"
1+
import { cn } from "@/lib/utils";
22

33
function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
44
return (
@@ -7,7 +7,7 @@ function Skeleton({ className, ...props }: React.ComponentProps<"div">) {
77
className={cn("bg-accent animate-pulse rounded-md", className)}
88
{...props}
99
/>
10-
)
10+
);
1111
}
1212

13-
export { Skeleton }
13+
export { Skeleton };

0 commit comments

Comments
 (0)