add end date and create logo and fix filter

This commit is contained in:
arifal
2026-04-17 00:16:31 +07:00
parent 82c1da9951
commit 7159e9108f
35 changed files with 743 additions and 82 deletions
+11 -5
View File
@@ -2,6 +2,7 @@
import { useState } from "react";
import Link from "next/link";
import Image from "next/image";
import { useSession, signOut } from "next-auth/react";
export function Navbar() {
@@ -10,12 +11,17 @@ export function Navbar() {
return (
<nav className="sticky top-0 z-40 border-b border-neutral-200 bg-white/90 backdrop-blur-md">
<div className="mx-auto flex h-14 max-w-6xl items-center justify-between px-4">
<div className="mx-auto flex h-16 max-w-6xl items-center justify-between px-4">
{/* Logo */}
<Link href="/" className="flex items-center gap-1.5">
<span className="flex h-7 w-7 items-center justify-center rounded-lg bg-primary-600 text-xs font-bold text-white">
S
</span>
<Link href="/" className="flex items-center gap-2">
<Image
src="/images/SeTrip.png"
alt="SeTrip"
width={44}
height={44}
className="h-11 w-11 object-contain"
priority
/>
<span className="text-lg font-bold text-neutral-800">
Se<span className="text-primary-600">Trip</span>
</span>