@@ -43,7 +43,7 @@ const services = [
43
43
44
44
export default function Home ( ) {
45
45
return (
46
- < main className = "p-6 grid gap-6 md:gap-12 my -12" >
46
+ < main className = "my-12 grid gap-6 p-6 md:gap-12" >
47
47
< Hero />
48
48
< Pricing />
49
49
< Testimonials />
@@ -53,8 +53,8 @@ export default function Home() {
53
53
54
54
const Hero = ( ) => {
55
55
return (
56
- < div className = "md:max-w-2xl grid gap-4 " >
57
- < h1 className = "text-4xl font-medium sr-only " > 9d8 Services</ h1 >
56
+ < div className = "grid gap-4 md:max-w-2xl" >
57
+ < h1 className = "sr-only text-4xl font-medium" > 9d8 Services</ h1 >
58
58
< h2 className = "text-2xl" > Subscription Services offered by 9d8</ h2 >
59
59
< h3 >
60
60
We offer a variety of subscription services to help you grow your
@@ -67,7 +67,7 @@ const Hero = () => {
67
67
68
68
const Pricing = ( ) => {
69
69
return (
70
- < div className = "md:max-w-2xl grid gap-4 " >
70
+ < div className = "grid gap-4 md:max-w-2xl" >
71
71
< h3 className = "text-xl" >
72
72
< Balancer >
73
73
Subscriptions to build your business. Pause or cancel anytime.
@@ -78,12 +78,12 @@ const Pricing = () => {
78
78
{ services . map ( ( service , index ) => (
79
79
< li
80
80
key = { index }
81
- className = "bg-muted-background p-6 grid gap-4 rounded-lg border bg-accent/25"
81
+ className = "bg-muted-background grid gap-4 rounded-lg border bg-accent/25 p-6 "
82
82
>
83
83
< h4 > { service . name } </ h4 >
84
84
< p className = "text-muted-foreground" > { service . description } </ p >
85
85
< p >
86
- < span className = "text-muted-foreground text-lg " > Starting at</ span > { " " }
86
+ < span className = "text-muted-foreground" > Starting at</ span > { " " }
87
87
{ service . price }
88
88
</ p >
89
89
</ li >
@@ -95,15 +95,13 @@ const Pricing = () => {
95
95
96
96
const Testimonials = ( ) => {
97
97
return (
98
- < div className = "md:max-w-2xl grid gap-4" >
99
- < h3 className = "text-2xl mb-6" >
100
- We've worked with some amazing companies.{ " " }
101
- </ h3 >
102
- < ul className = "md:flex gap-2 flex-wrap" >
98
+ < div className = "grid gap-4 md:max-w-2xl" >
99
+ < h3 className = "mb-6" > We've worked with some amazing companies. </ h3 >
100
+ < ul className = "flex-wrap gap-2 md:flex" >
103
101
{ companies . map ( ( company , index ) => (
104
- < li className = "text-2xl " key = { index } >
102
+ < li className = "" key = { index } >
105
103
< a
106
- className = "hover:text-muted-foreground transition-all "
104
+ className = "transition-all hover:text-muted-foreground"
107
105
href = { company . link }
108
106
>
109
107
{ company . name } +{ " " }
0 commit comments