+
)
}
+function MobileMenu() {
+ return (
+
+
+
+
+
+
+
+
+
+ StartUpChain
+
+
+
+
+ {navLinks.map((link) => (
+
+ {link.label}
+
+ ))}
+
+
+ Launch your onchain company in minutes with ENS, Safe, and automated
+ registration.
+
+
+
+ )
+}
+
function NavbarActions({ providersReady }: { providersReady: boolean }) {
if (!providersReady) {
return
diff --git a/src/app/(public)/page.tsx b/src/app/(public)/page.tsx
index 81dae07..61a686e 100644
--- a/src/app/(public)/page.tsx
+++ b/src/app/(public)/page.tsx
@@ -1,11 +1,10 @@
-import AnimatedRocket from '@/app/(public)/components/AnimatedRocket/AnimatedRocket'
+import { Suspense } from 'react'
+
+import { AutoAuthRedirect } from '@/app/(public)/components/auto-auth-redirect'
import { FeaturesSection } from '@/app/(public)/components/features-section'
import { Footer } from '@/app/(public)/components/footer'
-import { Suspense } from 'react'
-
import { HeroSection } from './components/hero-section'
-import { AutoAuthRedirect } from '@/app/(public)/components/auto-auth-redirect'
export default function Home() {
return (
@@ -13,12 +12,6 @@ export default function Home() {
-
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index e950f3a..caae5b3 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -5,8 +5,8 @@ import { Fredoka } from 'next/font/google'
import { cookies, headers } from 'next/headers'
import { AIChatTrigger } from '@/components/ai-chat/ai-chat-trigger'
-import { CookieConsent } from '@/components/ui/cookie-consent'
import { ProvidersShell } from '@/components/providers/providers-shell'
+import { CookieConsent } from '@/components/ui/cookie-consent'
import { getServerSession } from '@/lib/auth/server-session'
import '@/style.css'
@@ -65,7 +65,11 @@ export default async function RootLayout({
})
return (
-
+