Skip to content

Commit 04a6b4c

Browse files
committed
format: npm run format
1 parent 4e05f28 commit 04a6b4c

3 files changed

Lines changed: 9 additions & 36 deletions

File tree

app/(home)/components/Testimonials.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ export function Testimonials() {
9393
<Container>
9494
{/* Combined container: Ratings + Button */}
9595
<div className="flex flex-col gap-8 sm:gap-12 lg:flex-row lg:items-center lg:justify-between">
96-
9796
{/* Logo & Ratings */}
9897
<div className="flex flex-col items-center text-center lg:items-start lg:text-left max-w-xl">
9998
<div className="flex items-center gap-2">
@@ -136,7 +135,6 @@ export function Testimonials() {
136135
</Button>
137136
</Link>
138137
</div>
139-
140138
</div>
141139

142140
{/* CAROUSEL */}
@@ -237,10 +235,7 @@ const TestimonialCard = ({
237235
{comment}
238236
</div>
239237
<div className="absolute h-fit pt-[15%] px-[4%] inset-x-1 bottom-[24%] text-[#B3B3B3] underline underline-offset-2 decoration-1 text-xs sm:text-base bg-gradient-to-t from-medium-dark-green from-50% -mt-3">
240-
<a
241-
href="/404"
242-
target="_blank"
243-
>
238+
<a href="/404" target="_blank">
244239
Read More
245240
</a>
246241
</div>

app/(home)/page.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import { Sponsors } from './components/Sponsors';
88

99
import { Testimonials } from './components/Testimonials';
1010

11-
1211
export default function HomePage() {
1312
return (
1413
<main>

tsconfig.json

Lines changed: 8 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
{
22
"compilerOptions": {
3-
"lib": [
4-
"dom",
5-
"dom.iterable",
6-
"esnext"
7-
],
3+
"lib": ["dom", "dom.iterable", "esnext"],
84
"allowJs": true,
95
"skipLibCheck": true,
106
"strict": true,
@@ -23,31 +19,14 @@
2319
],
2420
"baseUrl": ".",
2521
"paths": {
26-
"@/app/*": [
27-
"./app/*"
28-
],
29-
"@/public/*": [
30-
"./public/*"
31-
],
32-
"@/components/*": [
33-
"./components/*"
34-
],
35-
"@/lib/*": [
36-
"./lib/*"
37-
],
38-
"@/styles/*": [
39-
"./styles/*"
40-
]
22+
"@/app/*": ["./app/*"],
23+
"@/public/*": ["./public/*"],
24+
"@/components/*": ["./components/*"],
25+
"@/lib/*": ["./lib/*"],
26+
"@/styles/*": ["./styles/*"]
4127
},
4228
"target": "ES2017"
4329
},
44-
"include": [
45-
"next-env.d.ts",
46-
"**/*.ts",
47-
"**/*.tsx",
48-
".next/types/**/*.ts"
49-
],
50-
"exclude": [
51-
"node_modules"
52-
]
30+
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
31+
"exclude": ["node_modules"]
5332
}

0 commit comments

Comments
 (0)