Skip to content

Commit e52ce7f

Browse files
landing-6
1 parent 2e1e9ff commit e52ce7f

File tree

8 files changed

+350
-138
lines changed

8 files changed

+350
-138
lines changed

apps/web/public/icons/adobe.svg

Lines changed: 1 addition & 10 deletions
Loading

apps/web/src/components/github-open-source.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,14 +80,14 @@ export function GitHubOpenSource() {
8080
<div className="text-center space-y-4">
8181
<h2 className="text-3xl font-serif text-stone-600">Open source</h2>
8282
<p className="text-lg text-neutral-600">
83-
Hyprnote was built to be transparent from day one, attracting great engineers around the world
83+
{"Hyprnote values privacy and community, so it's been transparent from day one"}
8484
</p>
8585
<a
8686
href={`https://github.com/${ORG_REPO}`}
8787
target="_blank"
8888
rel="noopener noreferrer"
8989
className={cn([
90-
"group px-6 h-12 inline-flex items-center justify-center gap-2 text-base sm:text-lg",
90+
"group px-6 h-12 inline-flex items-center justify-center gap-2",
9191
"bg-linear-to-t from-neutral-800 to-neutral-700 text-white rounded-full",
9292
"shadow-md hover:shadow-lg hover:scale-[102%] active:scale-[98%]",
9393
"transition-all cursor-pointer",

apps/web/src/components/logo-cloud.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ function LogoCard({ logo, className, children, ...props }: LogoCardProps) {
1515
return (
1616
<div
1717
className={cn(
18-
"flex items-center justify-center bg-transparent px-4 py-8 md:p-8 hover:bg-neutral-50 transition-colors cursor-pointer",
18+
"flex items-center justify-center bg-transparent px-4 py-8 md:p-8 hover:bg-neutral-50 transition-colors",
1919
className,
2020
)}
2121
{...props}
2222
>
2323
<img
2424
alt={logo.alt}
25-
className="pointer-events-none h-4 select-none md:h-5"
25+
className="pointer-events-none h-5 select-none md:h-6"
2626
height={logo.height || "auto"}
2727
src={logo.src}
2828
width={logo.width || "auto"}

apps/web/src/components/social-card.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export function SocialCard({
7575
<path d={config.iconPath} />
7676
</svg>
7777
</div>
78-
<p className="text-neutral-700 leading-relaxed line-clamp-15 overflow-hidden">{body}</p>
78+
<p className="text-neutral-700 leading-relaxed line-clamp-4 md:line-clamp-15 overflow-hidden">{body}</p>
7979
</div>
8080
</a>
8181
);

apps/web/src/components/video-player.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,14 @@ export function VideoPlayer({
7171
e.stopPropagation();
7272
onLearnMore?.();
7373
}}
74-
className={cn(
74+
className={cn([
7575
"flex-1 py-4 text-xs font-mono",
7676
"bg-stone-100/95 text-stone-800",
7777
"border-r border-stone-400/50",
7878
"hover:bg-stone-200/95 active:bg-stone-400/95",
7979
"transition-all duration-150",
8080
"backdrop-blur-sm",
81-
)}
81+
])}
8282
>
8383
Learn more
8484
</button>
@@ -87,13 +87,13 @@ export function VideoPlayer({
8787
e.stopPropagation();
8888
onExpandVideo?.();
8989
}}
90-
className={cn(
90+
className={cn([
9191
"flex-1 py-4 text-xs font-mono",
9292
"bg-stone-100/95 text-stone-800",
9393
"hover:bg-stone-200/95 active:bg-stone-400/95",
9494
"transition-all duration-150",
9595
"backdrop-blur-sm",
96-
)}
96+
])}
9797
>
9898
Expand video
9999
</button>

0 commit comments

Comments
 (0)