@@ -8,16 +8,16 @@ export const StartContent = () => {
88 const { colorScheme } = useMantineColorScheme ( ) ;
99
1010 return (
11- < Container className = "mt-16 mb-12" size = "xl" >
11+ < Container className = "mb-12 mt-16 " size = "xl" >
1212 { /* Section Header */ }
13- < Box className = "text-center mb-12" >
13+ < Box className = "mb-12 text-center " >
1414 < Badge size = "lg" variant = "light" color = "blue" mb = "md" >
1515 Quick Start
1616 </ Badge >
17- < Title order = { 2 } className = "text-3xl font-bold mb-4 " >
17+ < Title order = { 2 } className = "mb-4 text-3xl font-bold" >
1818 Get Started in Seconds
1919 </ Title >
20- < Text size = "lg" c = "dimmed" className = "max-w-2xl mx-auto " >
20+ < Text size = "lg" c = "dimmed" className = "mx-auto max-w-2xl" >
2121 Install the package and start using Git Diff View in your project right away
2222 </ Text >
2323 </ Box >
@@ -26,25 +26,17 @@ export const StartContent = () => {
2626 < Box
2727 className = "rounded-xl border border-solid shadow-sm"
2828 style = { {
29- borderColor : colorScheme === ' light' ? ' #e9ecef' : ' var(--mantine-color-dark-4)' ,
30- backgroundColor : colorScheme === ' light' ? ' #ffffff' : ' var(--mantine-color-dark-7)' ,
29+ borderColor : colorScheme === " light" ? " #e9ecef" : " var(--mantine-color-dark-4)" ,
30+ backgroundColor : colorScheme === " light" ? " #ffffff" : " var(--mantine-color-dark-7)" ,
3131 } }
3232 >
3333 < Box className = "p-6" >
3434 < Tabs defaultValue = "react" variant = "pills" >
3535 < Tabs . List className = "mb-6" >
36- < Tabs . Tab
37- value = "react"
38- leftSection = { < IconBrandReact style = { iconStyle } /> }
39- className = "text-base"
40- >
36+ < Tabs . Tab value = "react" leftSection = { < IconBrandReact style = { iconStyle } /> } className = "text-base" >
4137 React
4238 </ Tabs . Tab >
43- < Tabs . Tab
44- value = "vue"
45- leftSection = { < IconBrandVue style = { iconStyle } /> }
46- className = "text-base"
47- >
39+ < Tabs . Tab value = "vue" leftSection = { < IconBrandVue style = { iconStyle } /> } className = "text-base" >
4840 Vue
4941 </ Tabs . Tab >
5042 </ Tabs . List >
@@ -53,11 +45,11 @@ export const StartContent = () => {
5345 < Box
5446 className = "rounded-xl border border-solid p-6"
5547 style = { {
56- borderColor : colorScheme === ' light' ? ' #f1f3f5' : ' var(--mantine-color-dark-5)' ,
57- backgroundColor : colorScheme === ' light' ? ' #f8f9fa' : ' var(--mantine-color-dark-6)' ,
48+ borderColor : colorScheme === " light" ? " #f1f3f5" : " var(--mantine-color-dark-5)" ,
49+ backgroundColor : colorScheme === " light" ? " #f8f9fa" : " var(--mantine-color-dark-6)" ,
5850 } }
5951 >
60- < Box className = "flex items-center gap-3 mb-4 " >
52+ < Box className = "mb-4 flex items-center gap-3" >
6153 < IconCode size = { 24 } className = "text-blue-500" />
6254 < Title order = { 3 } size = "h4" >
6355 React Example
@@ -74,11 +66,11 @@ export const StartContent = () => {
7466 < Box
7567 className = "rounded-xl border border-solid p-6"
7668 style = { {
77- borderColor : colorScheme === ' light' ? ' #f1f3f5' : ' var(--mantine-color-dark-5)' ,
78- backgroundColor : colorScheme === ' light' ? ' #f8f9fa' : ' var(--mantine-color-dark-6)' ,
69+ borderColor : colorScheme === " light" ? " #f1f3f5" : " var(--mantine-color-dark-5)" ,
70+ backgroundColor : colorScheme === " light" ? " #f8f9fa" : " var(--mantine-color-dark-6)" ,
7971 } }
8072 >
81- < Box className = "flex items-center gap-3 mb-4 " >
73+ < Box className = "mb-4 flex items-center gap-3" >
8274 < IconCode size = { 24 } className = "text-green-500" />
8375 < Title order = { 3 } size = "h4" >
8476 Vue Example
0 commit comments