Skip to content
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
Binary file added frontend/public/logo-oval.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/src/app/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 9 additions & 7 deletions frontend/src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,22 @@ import { FAQ } from "@/components/landing/faq";
import { CTASection } from "@/components/landing/cta-section";
import { Footer } from "@/components/landing/footer";
import Link from "next/link";
import { Zap } from "lucide-react";
import Image from "next/image";

export default function LandingPage() {
return (
<div className="min-h-screen bg-surface-0">
{/* Landing nav */}
<nav className="fixed top-0 left-0 right-0 z-50 flex items-center justify-between px-6 py-4 bg-surface-0/80 backdrop-blur-md border-b border-border/50">
<Link href="/" className="flex items-center gap-2">
<div className="flex h-8 w-8 items-center justify-center rounded-lg bg-linear-to-br from-brand-500 to-brand-600">
<Zap className="h-4 w-4 text-white" />
</div>
<span className="text-lg font-bold tracking-tight">
Stack<span className="text-brand-400">Stream</span>
</span>
<Image
src="/logo-oval.png"
alt="StackStream"
width={46}
height={36}
className="h-9 w-auto"
priority
/>
</Link>
<div className="flex items-center gap-4 sm:gap-6">
<Link href="/dashboard" className="hidden md:inline text-sm text-zinc-400 hover:text-zinc-200 transition-colors">
Expand Down
16 changes: 9 additions & 7 deletions frontend/src/components/landing/footer.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import Link from "next/link";
import { Twitter, Github, Linkedin, Zap, ExternalLink } from "lucide-react";
import Image from "next/image";
import { Twitter, Github, Linkedin, ExternalLink } from "lucide-react";
import { FEEDBACK_URL, EXPLORER_BASE, NETWORK_LABEL } from "@/lib/constants";

const TelegramIcon = () => (
Expand Down Expand Up @@ -94,12 +95,13 @@ export function Footer() {
{/* Brand column */}
<div className="flex flex-col gap-5 sm:col-span-2 lg:col-span-1">
<Link href="/" className="flex items-center gap-2 w-fit">
<div className="flex h-9 w-9 items-center justify-center rounded-xl bg-gradient-to-br from-brand-500 to-brand-600 shadow-lg shadow-brand-500/20">
<Zap className="h-4 w-4 text-white" />
</div>
<span className="text-lg font-bold tracking-tight text-zinc-100">
Stack<span className="text-brand-400">Stream</span>
</span>
<Image
src="/logo-oval.png"
alt="StackStream"
width={56}
height={44}
className="h-11 w-auto"
/>
</Link>

<p className="text-sm leading-relaxed text-zinc-500 max-w-xs">
Expand Down
15 changes: 9 additions & 6 deletions frontend/src/components/layout/sidebar.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"use client";

import Link from "next/link";
import Image from "next/image";
import { usePathname } from "next/navigation";
import { useEffect } from "react";
import { cn } from "@/lib/utils";
Expand Down Expand Up @@ -65,12 +66,14 @@ export function Sidebar() {
>
{/* Logo */}
<Link href="/" className="flex items-center gap-2.5 px-6 py-5 border-b border-border">
<div className="flex h-8 w-8 items-center justify-center rounded-lg bg-gradient-to-br from-brand-500 to-brand-600">
<Zap className="h-4 w-4 text-white" />
</div>
<span className="text-lg font-bold tracking-tight">
Stack<span className="text-brand-400">Stream</span>
</span>
<Image
src="/logo-oval.png"
alt="StackStream"
width={46}
height={36}
className="h-9 w-auto"
priority
/>
</Link>

{/* Nav links */}
Expand Down
Loading