diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 5427d2d..e6ccb6f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -36,7 +36,7 @@ jobs: - name: Upload artifact 📡 uses: actions/upload-pages-artifact@v3 with: - path: ./out + path: ./auto-subs-info/out deploy: environment: diff --git a/auto-subs-info/components/landing-page.tsx b/auto-subs-info/components/landing-page.tsx index 449225c..67aadd7 100644 --- a/auto-subs-info/components/landing-page.tsx +++ b/auto-subs-info/components/landing-page.tsx @@ -1,19 +1,10 @@ 'use client' -import { useState } from 'react' import { Button } from "@/components/ui/button" import { Input } from "@/components/ui/input" -import { Github, Download, Zap, Type, Globe, Sparkles, Clock, Heart, MessageCircle, Paintbrush } from 'lucide-react' +import { Github, Download, Zap, Type, Globe, Sparkles, Heart, MessageCircle, Paintbrush } from 'lucide-react' export default function Component() { - const [email, setEmail] = useState('') - - const handleSubmit = (e: React.FormEvent) => { - e.preventDefault() - // Handle email submission here - console.log('Submitted email:', email) - setEmail('') - } return (