fix home page

This commit is contained in:
CHIEFSOFT\ameye
2024-04-23 18:28:10 -04:00
parent 019f2575bd
commit cdc4b5426b
5 changed files with 11 additions and 50 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.0 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.0 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

+9 -48
View File
@@ -71,54 +71,15 @@ export function Login() {
{/* begin::Login options */}
<div className="row g-3 mb-9">
{/* begin::Col */}
<div className="col-md-6">
{/* begin::Google link */}
<a
href="#"
className="btn btn-flex btn-outline btn-text-gray-700 btn-active-color-primary bg-state-light flex-center text-nowrap w-100"
>
<img
alt="Logo"
src={toAbsoluteUrl("media/svg/brand-logos/google-icon.svg")}
className="h-15px me-3"
/>
Sign in with Google
</a>
{/* end::Google link */}
</div>
{/* end::Col */}
{/* begin::Col */}
<div className="col-md-6">
{/* begin::Google link */}
<a
href="#"
className="btn btn-flex btn-outline btn-text-gray-700 btn-active-color-primary bg-state-light flex-center text-nowrap w-100"
>
<img
alt="Logo"
src={toAbsoluteUrl("media/svg/brand-logos/apple-black.svg")}
className="theme-light-show h-15px me-3"
/>
<img
alt="Logo"
src={toAbsoluteUrl("media/svg/brand-logos/apple-black-dark.svg")}
className="theme-dark-show h-15px me-3"
/>
Sign in with Apple
</a>
{/* end::Google link */}
</div>
{/* end::Col */}
</div>
{/* end::Login options */}
{/* begin::Separator */}
<div className="separator separator-content my-14">
<span className="w-125px text-gray-500 fw-semibold fs-7">
Or with email
</span>
{/*<span className="w-125px text-gray-500 fw-semibold fs-7">*/}
{/* Or with email*/}
{/*</span>*/}
</div>
{/* end::Separator */}
@@ -220,12 +181,12 @@ export function Login() {
</div>
{/* end::Action */}
<div className="text-gray-500 text-center fw-semibold fs-6">
Not a Member yet?{" "}
<Link to="/auth/registration" className="link-primary">
Sign up
</Link>
</div>
{/*<div className="text-gray-500 text-center fw-semibold fs-6">*/}
{/* Not a Member yet?{" "}*/}
{/* <Link to="/auth/registration" className="link-primary">*/}
{/* Sign up*/}
{/* </Link>*/}
{/*</div>*/}
</form>
);
}
+2 -2
View File
@@ -3,7 +3,7 @@ import {createRoot} from 'react-dom/client'
import axios from 'axios'
import {Chart, registerables} from 'chart.js'
import {QueryClient, QueryClientProvider} from 'react-query'
import {ReactQueryDevtools} from 'react-query/devtools'
//import {ReactQueryDevtools} from 'react-query/devtools'
// Apps
import {MetronicI18nProvider} from './_digifi/i18n/Metronici18n'
import './_digifi/assets/sass/style.react.scss'
@@ -43,7 +43,7 @@ if (container) {
<AppRoutes />
</AuthProvider>
</MetronicI18nProvider>
<ReactQueryDevtools initialIsOpen={false} />
{/*<ReactQueryDevtools initialIsOpen={false} />*/}
</QueryClientProvider>
)
}