Update src/app/signup/page.tsx

This commit is contained in:
2026-03-25 18:00:15 +00:00
parent 16f0362226
commit 4f18ab6c18

View File

@@ -7,14 +7,14 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import TextAbout from '@/components/sections/about/TextAbout';
const commonNavItems = [
{ name: "Home", href: "/" },
{ name: "Features", href: "#features" },
{ name: "Pricing", href: "#pricing" },
{ name: "Testimonials", href: "#testimonials" },
{ name: "FAQ", href: "#faq" },
{ name: "Contact", href: "#contact" },
{ name: "Login", href: "/login" },
{ name: "Signup", href: "/signup" }
{ name: "Home", id: "/" },
{ name: "Features", id: "#features" },
{ name: "Pricing", id: "#pricing" },
{ name: "Testimonials", id: "#testimonials" },
{ name: "FAQ", id: "#faq" },
{ name: "Contact", id: "#contact" },
{ name: "Login", id: "/login" },
{ name: "Signup", id: "/signup" }
];
const commonFooterColumns = [
@@ -79,7 +79,6 @@ export default function SignupPage() {
<TextAbout
useInvertedBackground={false}
title="Create Your VortexAI Account"
description="Sign up to start transforming your stories into stunning AI videos."
buttons={[
{ text: "Already have an account? Login", href: "/login" }
]}