Merge pull request #103 from letyassine/new-landing-page

update: landing-page
This commit is contained in:
iza
2025-06-25 18:59:25 +03:00
committed by GitHub
7 changed files with 50 additions and 12 deletions

View File

@ -29,8 +29,7 @@ export function Header() {
const leftContent = (
<Link href="/" className="flex items-center gap-3">
<Image src="/logo.png" alt="OpenCut Logo" width={24} height={24} />
<span className="font-medium tracking-tight">OpenCut</span>
<Image src="/logo.svg" alt="OpenCut Logo" width={142} height={32} />
</Link>
);
@ -59,5 +58,11 @@ export function Header() {
</nav>
);
return <HeaderBase leftContent={leftContent} rightContent={rightContent} />;
return (
<HeaderBase
className="bg-[#1D1D1D] border border-white/10 rounded-2xl max-w-3xl mx-auto mt-4 pl-4 pr-[14px]"
leftContent={leftContent}
rightContent={rightContent}
/>
);
}