fix: loading

This commit is contained in:
Vukasin 2025-07-03 23:47:54 +02:00
parent 5b5204e364
commit 7498c9fa1b
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
'use client';
import { HeroVideoSection } from '@/components/home/sections/hero-video-section';
import { siteConfig } from '@/lib/home';
import { ArrowRight, Github, X, AlertCircle } from 'lucide-react';
import { ArrowRight, Github, X, AlertCircle, Square } from 'lucide-react';
import { FlickeringGrid } from '@/components/home/ui/flickering-grid';
import { useMediaQuery } from '@/hooks/use-media-query';
import { useState, useEffect, useRef, FormEvent } from 'react';
@ -340,7 +340,7 @@ export function HeroSection() {
disabled={!inputValue.trim() || isSubmitting}
>
{isSubmitting ? (
<div className="h-5 w-5 animate-spin rounded-full border-2 border-primary-foreground border-t-transparent" />
<Square className="h-5 w-5" />
) : (
<ArrowUp className="h-5 w-5" />
)}