From c8c403d5c0651d905e0698dfc7077f3af1a8652d Mon Sep 17 00:00:00 2001 From: NasSharaf Date: Tue, 30 Sep 2025 18:19:56 -0400 Subject: [PATCH] Fixed create project button --- apps/deploy-fe/src/app/page.tsx | 42 ++++++++++++++++++++------------- 1 file changed, 26 insertions(+), 16 deletions(-) diff --git a/apps/deploy-fe/src/app/page.tsx b/apps/deploy-fe/src/app/page.tsx index 8ebba71..170b82c 100644 --- a/apps/deploy-fe/src/app/page.tsx +++ b/apps/deploy-fe/src/app/page.tsx @@ -1,17 +1,17 @@ 'use client' -import { useEffect, useState } from 'react' import { PageWrapper } from '@/components/foundation' +import { LoadingOverlay } from '@/components/foundation/loading/loading-overlay' +import { useAuth, useUser } from '@clerk/nextjs' import { Button } from '@workspace/ui/components/button' import { Shapes } from 'lucide-react' import Link from 'next/link' -import { useAuth, useUser } from '@clerk/nextjs' -import { LoadingOverlay } from '@/components/foundation/loading/loading-overlay' +import { useEffect, useState } from 'react' export default function HomePage() { const [isLoading, setIsLoading] = useState(true) const { isLoaded: isAuthLoaded, userId } = useAuth() const { isLoaded: isUserLoaded } = useUser() - + useEffect(() => { // Check authentication status if (isAuthLoaded && isUserLoaded) { @@ -32,7 +32,9 @@ export default function HomePage() { -

Welcome to Laconic Deploy

+

+ Welcome to Laconic Deploy +

- Deploy your applications quickly and securely on the decentralized web. + Deploy your applications quickly and securely on the decentralized + web.

- +
- +

- Already have an account? Sign in + Already have an account?{' '} + + Sign in +

)} - + {/* Removed the CheckBalanceIframe component that was causing errors */}
) -} \ No newline at end of file +}