Skip to content
This repository was archived by the owner on Nov 11, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions frontend/vizzy/app/landing/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export default function Home() {
asChild
className="px-8 py-6 text-lg bg-black hover:bg-black/90 text-white cursor-pointer"
>
<Link href="/auth/signup">
<Link href="/">
Explora a Plataforma
<ArrowRight className="ml-2 h-4 w-4" />
</Link>
Expand Down Expand Up @@ -174,7 +174,7 @@ export default function Home() {
className="w-full bg-black text-white hover:bg-grey/90 cursor-pointer"
size="lg"
>
<Link href="/auth/signup">Explora a Plataforma</Link>
<Link href="/">Explora a Plataforma</Link>
</Button>
</div>
</div>
Expand Down
73 changes: 9 additions & 64 deletions frontend/vizzy/components/layout/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { Separator } from '@/components/ui/layout/separator';
import Logo from '@/components/branding/logo';
import { LINKS } from '@/lib/constants/links';
import { getTranslations } from 'next-intl/server';
import { ROUTES } from '@/lib/constants/routes/routes';

/**
* Footer component that renders the footer section of the website.
Expand All @@ -27,70 +28,14 @@ export async function Footer() {
<p className="text-sm text-muted-foreground">{t('tagline')}</p>
</div>

<nav className="grid grid-cols-2 gap-8 sm:grid-cols-3">
<div className="flex flex-col gap-2">
<h3 className="text-sm font-medium">{t('product.title')}</h3>
<Link
href="#"
className="text-sm text-muted-foreground hover:text-foreground"
>
{t('product.features')}
</Link>
<Link
href="#"
className="text-sm text-muted-foreground hover:text-foreground"
>
{t('product.pricing')}
</Link>
<Link
href="#"
className="text-sm text-muted-foreground hover:text-foreground"
>
{t('product.docs')}
</Link>
</div>
<div className="flex flex-col gap-2">
<h3 className="text-sm font-medium">{t('company.title')}</h3>
<Link
href="#"
className="text-sm text-muted-foreground hover:text-foreground"
>
{t('company.about')}
</Link>
<Link
href="#"
className="text-sm text-muted-foreground hover:text-foreground"
>
{t('company.careers')}
</Link>
<Link
href="#"
className="text-sm text-muted-foreground hover:text-foreground"
>
{t('company.blog')}
</Link>
</div>
<div className="flex flex-col gap-2">
<h3 className="text-sm font-medium">{t('legal.title')}</h3>
<Link
href="#"
className="text-sm text-muted-foreground hover:text-foreground"
>
{t('legal.terms')}
</Link>
<Link
href="#"
className="text-sm text-muted-foreground hover:text-foreground"
>
{t('legal.privacy')}
</Link>
<Link
href="#"
className="text-sm text-muted-foreground hover:text-foreground"
>
{t('legal.contact')}
</Link>
</div>
<nav className="flex flex-col gap-2">
<h3 className="text-sm font-medium">{t('product.title')}</h3>
<Link
href={ROUTES.LANDING}
className="text-sm text-muted-foreground hover:text-foreground"
>
{t('product.features')}
</Link>
</nav>
</div>

Expand Down
4 changes: 3 additions & 1 deletion frontend/vizzy/lib/constants/routes/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ export type RouteKey =
| 'SETTINGS'
| 'DASHBOARD'
| 'LISTING'
| 'REFRESH';
| 'REFRESH'
| 'LANDING';

/**
* Maps route keys to their corresponding URL paths.
Expand Down Expand Up @@ -44,4 +45,5 @@ export const ROUTES: Record<RouteKey, string> = {
DASHBOARD: '/dashboard',
LISTING: '/listing',
REFRESH: '/refresh',
LANDING: '/landing',
};