Update src/app/auth/page.tsx

This commit is contained in:
2026-03-08 15:02:03 +00:00
parent 183b913852
commit 6f72e070c3

View File

@@ -14,7 +14,7 @@ export default function AuthPage() {
{ name: "Pricing", id: "pricing" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Blog", id: "blog" },
{ name: "Contact", id: "contact" },
{ name: "Customize", id: "customize" },
];
return (
@@ -35,9 +35,7 @@ export default function AuthPage() {
brandName="CodeFlow"
navItems={navItems}
button={{
text: "Get Started",
href: "/auth/signup",
}}
text: "Get Started", href: "/auth/signup"}}
/>
</div>
@@ -50,33 +48,13 @@ export default function AuthPage() {
tagAnimation="slide-up"
features={[
{
id: "1",
title: "Secure Account",
description: "Your code, designs, and projects are protected with enterprise-grade security and encryption. Full control over your data.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARM6IccPER0LhH7jpL9sFFPmNn/a-modern-ai-code-generator-dashboard-int-1772875139557-80999b87.png?_wi=2",
imageAlt: "Secure dashboard interface",
},
id: "1", title: "Secure Account", description: "Your code, designs, and projects are protected with enterprise-grade security and encryption. Full control over your data.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARM6IccPER0LhH7jpL9sFFPmNn/a-modern-ai-code-generator-dashboard-int-1772875139557-80999b87.png?_wi=2", imageAlt: "Secure dashboard interface"},
{
id: "2",
title: "Generation History",
description: "Access all your past generations instantly. Track your progress, review previous projects, and reuse successful patterns.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARM6IccPER0LhH7jpL9sFFPmNn/a-generation-history-and-analytics-dashb-1772875140500-d6340221.png?_wi=2",
imageAlt: "Generation history dashboard",
},
id: "2", title: "Generation History", description: "Access all your past generations instantly. Track your progress, review previous projects, and reuse successful patterns.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARM6IccPER0LhH7jpL9sFFPmNn/a-generation-history-and-analytics-dashb-1772875140500-d6340221.png?_wi=2", imageAlt: "Generation history dashboard"},
{
id: "3",
title: "Team Collaboration",
description: "Invite team members, share projects, and collaborate in real-time. Perfect for agencies and development teams.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARM6IccPER0LhH7jpL9sFFPmNn/a-responsive-website-preview-interface-s-1772875139361-87942715.png?_wi=2",
imageAlt: "Team collaboration interface",
},
id: "3", title: "Team Collaboration", description: "Invite team members, share projects, and collaborate in real-time. Perfect for agencies and development teams.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARM6IccPER0LhH7jpL9sFFPmNn/a-responsive-website-preview-interface-s-1772875139361-87942715.png?_wi=2", imageAlt: "Team collaboration interface"},
{
id: "4",
title: "Priority Support",
description: "Get fast access to our support team. Priority email and chat support to help you succeed with CodeFlow.",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARM6IccPER0LhH7jpL9sFFPmNn/a-live-preview-window-showing-a-generate-1772875139391-4b6b8923.png?_wi=2",
imageAlt: "Support interface",
},
id: "4", title: "Priority Support", description: "Get fast access to our support team. Priority email and chat support to help you succeed with CodeFlow.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARM6IccPER0LhH7jpL9sFFPmNn/a-live-preview-window-showing-a-generate-1772875139391-4b6b8923.png?_wi=2", imageAlt: "Support interface"},
]}
gridVariant="bento-grid"
animationType="slide-up"
@@ -85,9 +63,7 @@ export default function AuthPage() {
carouselMode="buttons"
buttons={[
{
text: "Sign Up Now",
href: "/auth/signup",
},
text: "Sign Up Now", href: "/auth/signup"},
]}
/>
</div>
@@ -101,29 +77,17 @@ export default function AuthPage() {
tagAnimation="slide-up"
metrics={[
{
id: "1",
icon: Users,
title: "Free Tier",
value: "5 Gens",
},
id: "1", icon: Users,
title: "Free Tier", value: "5 Gens"},
{
id: "2",
icon: Gauge,
title: "Setup Time",
value: "2 mins",
},
id: "2", icon: Gauge,
title: "Setup Time", value: "2 mins"},
{
id: "3",
icon: Shield,
title: "Security",
value: "Enterprise",
},
id: "3", icon: Shield,
title: "Security", value: "Enterprise"},
{
id: "4",
icon: TrendingUp,
title: "Upgrade",
value: "Anytime",
},
id: "4", icon: TrendingUp,
title: "Upgrade", value: "Anytime"},
]}
animationType="scale-rotate"
textboxLayout="default"
@@ -131,9 +95,7 @@ export default function AuthPage() {
carouselMode="buttons"
buttons={[
{
text: "Create Account",
href: "/auth/signup",
},
text: "Create Account", href: "/auth/signup"},
]}
/>
</div>
@@ -142,16 +104,12 @@ export default function AuthPage() {
<FooterLogoReveal
logoText="CodeFlow"
leftLink={{
text: "Privacy Policy",
href: "/privacy",
}}
text: "Privacy Policy", href: "/privacy"}}
rightLink={{
text: "Terms of Service",
href: "/terms",
}}
text: "Terms of Service", href: "/terms"}}
ariaLabel="Site footer with brand information"
/>
</div>
</ThemeProvider>
);
}
}