Skip to content
Open
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
27 changes: 19 additions & 8 deletions frontend/src/routes/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -283,17 +283,28 @@ function Landing() {
</div>
</section>

<footer className="border-t border-border bg-surface">
<div className="mx-auto flex max-w-6xl flex-wrap items-center justify-between gap-3 px-4 py-6 sm:px-6">
<footer className="border-t border-border bg-surface py-6">
<div className="mx-auto flex max-w-6xl flex-wrap items-center justify-between gap-4 px-6 py-2 sm:flex-row sm:text-left">
<div className="flex items-center gap-2">
<img src={APP_LOGO} alt="" className="h-6 w-6 rounded" />
<span className="text-[13px] font-semibold text-foreground">DevLink</span>
<span className="text-[12px] text-muted-foreground">© {new Date().getFullYear()}</span>
<img src={APP_LOGO} alt="Devlink Logo" className="h-8 w-8 rounded" />
<span className="text-[13px] font-bold text-foreground ">DevLink</span>
<span className="text-[11px] text-muted-foreground opacity-70">© {new Date().getFullYear()}</span>
</div>
<div className="flex items-center gap-5 text-[12px] text-muted-foreground">
{["Privacy", "Security", "Terms", "Status"].map((l) => (
<a key={l} href="#" className="hover:text-primary hover:underline">
{l}
{[
{ label: "GitHub", href: "https://github.com/nensii21/devlink" },
{ label: "Privacy Policy", href: "#" },
{ label: "Terms", href: "#" },
{ label: "Contact", href: "#" },
].map((item) => (
<a
key={item.label}
href={item.href}
target={item.href.startsWith("http") ? "_blank" : undefined}
rel={item.href.startsWith("http") ? "noopener noreferrer" : undefined}
className="hover:text-primary hover:underline"
>
{item.label}
</a>
))}
</div>
Expand Down
1 change: 1 addition & 0 deletions frontend/src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -178,3 +178,4 @@
color: var(--foreground);
}
}

Loading